Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript string length

/* 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"
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #javascript #string #length
ADD COMMENT
Topic
Name
5+8 =