Région de recherche :

Date :

https://developer.mozilla.org › fr › docs › Web › JavaScript › Reference › Global_Objects › String

String - JavaScript | MDN - MDN Web Docs

Parmi les opérations les plus utilisées pour manipuler les chaînes de caractères, on a : la vérification de leur longueur avec length, la construction et la concaténation avec les opérateurs + et +=, la recherche de sous-chaîne avec les méthodes includes() ou indexOf() ou encore l'extraction de sous-chaînes avec la méthode substring().

https://www.w3schools.com › jsref › jsref_length_string.asp

JavaScript String length Property - W3Schools

The length property returns the length of a string. The length property of an empty string is 0.

https://www.w3schools.com › howto › howto_js_string_length.asp

How To Get The Length of a String in JavaScript - W3Schools

Learn how to find the length of a string in JavaScript. String Length. The length property returns the length of a string: Example. var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; var len = txt.length; Try it Yourself » Read more about strings in our JavaScript Strings Tutorial. Read more about the length property in our JavaScript String length Reference.

https://www.toutjavascript.com › reference › ref-string.length.php

String.length - Référence du JS - Tout JavaScript.com

Description. Propriété de type entier correspondant à la longueur, c'est-à-dire au nombre de caractères composant la chaîne de caractères. Attention, length est une propriété, on écrit donc bien length, sans les () qui seraient nécessaires pour une méthode. Une chaîne vide a une longueur nulle.

https://forkful.ai › fr › javascript › strings › finding-the-length-of-a-string

JavaScript: Trouver la longueur d'une chaîne de caractères - Forkful

Il n’y a pas vraiment d’alternatives pour obtenir la longueur d’une chaîne en JS - .length est votre outil de base. Côté implémentation, .length est une propriété prédéfinie du prototype String, ce qui la rend disponible pour toutes les chaînes.

https://developer.mozilla.org › fr › docs › Learn › JavaScript › First_steps › Useful_string_methods

Méthodes utiles pour les chaînes de caractères

C'est facile — il suffit d'utiliser la propriété length. Entrez ceci : js. let browserType = "mozilla"; . browserType.length; Cette commande doit renvoyer le nombre 7, parce que « mozilla » comporte 7 caractères.

https://www.full-skills.com › fr › javascript › javascript-string-length

Comprendre la longueur et la coupe des chaînes JavaScript

La propriété JavaScript string.length fournit un moyen pratique mais simple pour déterminer la longueur d'une chaîne. Il compte le nombre total de caractères contenus dans cette chaîne, tels que les espaces, les lettres, les chiffres, les symboles ou même les caractères spéciaux. Syntaxe.

https://devdoc.net › ... › docs › Web › JavaScript › Reference › Global_Objects › String › length.html

string.length - JavaScript | MDN

JavaScript. Referência de JavaScript. Standard built-in objects. String. string.length. In This Article. The length property represents the length of a string. Syntax. str.length. Description. This property returns the number of code units in the string.

https://fr.w3docs.com › apprendre-javascript › strings.html

JavaScript Strings | W3Docs JavaScript Tutorial

La Longueur de la Chaîne. La propriété length est utilisée pour trouver la longueur d'une chaîne: