1/* The length property of a String object contains the length of the
2string, in UTF-16 code units. length is a read-only data property of
3string instances. */
4
5const str = "Life, the universe and everything. Answer:";
6console.log(`${str} ${str.length}`);
7// expected output: "Life, the universe and everything. Answer: 42"