length method javascript code example
Example 1: javascript string lentrh
var myString = "string test";
var stringLength = myString.length;
console.log(stringLength);
Example 2: javascript length
var colors = ["Red", "Orange", "Blue", "Green"];
var colorsLength=colors.length;
var str = "bug";
var strLength=str.length;
Example 3: js .length
var x = 'Mozilla';
var empty = '';
console.log('Mozilla is ' + x.length + ' code units long');
console.log('La stringa vuota ha una lunghezza di
' + empty.length);