I am new to JS and am trying to understand chartAt. I created a problem where I want to go through an array and pull the first character of each value from my array using charAt. I'm a bit stuck with my code.
var myArray = ['adam', 'bianca', 'cat', 'dennis'];
var myFunc = function (letter) {
for (var i = 0; i < letter.length; i += 1) {
letter.charAt(0);
console.log(letter.charAt(0));
}
}
In your iteration loop,
letter
is the array passed to the functionmyFunc()
. You need to access its elements, which you're iterating viai
. Useletter[i].charAt(0)
instead ofletter.charAt(0)
So your understanding of
String.prototype.charAt()
is correct, but the loop iteration was faulty.