how to find length of string javascript code example

Example 1: js string length

let str = "foo";
console.log(str.length);
// 3

Example 2: javascript length

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

Example 3: javascript check string lenght

let SomeString = "Example";


console.log(SomeString.length)

Example 4: string length javascript

/* The length property of a String object contains the length of the
string, in UTF-16 code units. length is a read-only data property of
string instances. */

const str = "Life, the universe and everything. Answer:";
console.log(`${str} ${str.length}`);
// expected output: "Life, the universe and everything. Answer: 42"

Tags:

Php Example