Access individual characters with bracket notation:
let word = "JavaScript"
console.log(word[0]) // "J"
console.log(word[4]) // "S"
console.log(word[100]) // undefined
Indices start at . The first character is at index , the second at index . Accessing beyond the string's length returns undefined, not an error.