The length data property of a String contains the length of the string in characters (UTF-16 code units).
const sentence = 'Life, the universe and everything. Answer:';
const sentenceLength = sentence.length;
console.log(sentenceLength);
// 42