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

Smartphone icons created by Freepik - Flaticon

JS String Methods

The charAt() method returns the character at a given position in a string:

var str = "HELLO WORLD";
document.getElementById("demo").innerHTML = str.charAt(0);