I'm having some trouble with my array.
It loops through every character of the array, so including the [
and "
.
My code:
for (var i = 0; i < array.length; i++) {
alert(array[i]);
//Do something
}
The array looks like this: ["1", "2", "1"]