JavaScript String Methods at a glance for beginners
charAt() :
charAt(int) method returns the character in the specified string for a given index number. The index of the string starts at zero (0).
For Example:
var stringOne = 'Hello JavaScript';
var output = stringOne.charAt(6);
console.log("The char...
injamulcse15.hashnode.dev4 min read