String LengthFinding the length of a string. String Length The length property returns the length of a string. let text = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; let length = text.length; Examplelet text = "Hello"; let len = text.length; // 5Try it Yourself PreviousNext