+ 1
Guys what is function of charAt()??
2 Answers
+ 11
This function returns the character at the specific given index position in an array of characters or in a string that is also an array of characters!!
+ 10
var str = "Hello";
console.log(str.charAt(1));
// logs the str's 'e' character. 'H' being at 0.