I don't have any experience with javascript and I have a basic question about arrays. I can't seem to find it on the internet.
I'm using a basic array like this:
var names = new Array('Jorn', 'Janine', 'Peter', 'Magchiel', 'Marieke', 'Pieter');
The output needs to be something like this:
[0] = Jorn, [1] = Janine, [2] = Peter, ...
And so on. I'm really struggling with this.
I hope someone could help me with this.
Thanks in advance!