📜  字符串长度 javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:28.210000             🧑  作者: Mango

代码示例6
/* 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"