let str = "foo";
console.log(str.length);
// 3
var str = "Hello World!";
var n = str.length;
let SomeString = "Example";
console.log(SomeString.length)
let str ="Hello World! "
console.log(str.length);
//17
/* 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"
const s = 'Hello, World!';
console.log(s.length);
const a = 'hello';
console.log(a.length); // 5