JavaScript Get Personagem de String
const str = "Hello World";
const firstCharacter = str.charAt(0);
Dead Dolphin
const str = "Hello World";
const firstCharacter = str.charAt(0);
\r\n
var str = "HELLO WORLD";
var res = str.charAt(0);