This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Strings

Property access on strings:

The first character in the string is:

let text = "HELLO WORLD";
document.getElementById("demo").innerHTML = text[0];