The length property tells you how many characters a string contains:
let text = "Hello"
console.log(text.length) // 5
let empty = ""
console.log(empty.length) // 0
Length is a property, not a method, so you don't use parentheses. It counts all characters including spaces and punctuation.