String Length
Finding the length of a string.
Examples
Basic Length
Getting the number of characters in a string.
let text = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
let length = text.length;
console.log(length); // 26Test Your Knowledge
JavaScript Quiz
No quiz available for this topic yet.