“JavaScript String Lenth” Réponses codées

JavaScript String Lenth

var myString = "string test";
var stringLength = myString.length;

console.log(stringLength); // Will return 11 because myString 
// 							  is 11 characters long...
Duco Defiant Dogfish

longueur javascript

var colors = ["Red", "Orange", "Blue", "Green"];
var colorsLength=colors.length;//4 is colors array length 

var str = "bug";
var strLength=str.length;//3 is the number of characters in bug
Grepper

Réponses similaires à “JavaScript String Lenth”

Questions similaires à “JavaScript String Lenth”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code