You can iterate over Arrays using "for in"
Mark Cidade pointed out the usefullness of the "for in" loop :
// creating an object (the short way, to use it like a hashmap)
var diner = {
"fruit":"apple"
"veggetable"="bean"
}
// looping over its properties
for (meal_name in diner ) {
document.write(meal_name+"<br \n>");
}
Result :
fruit
veggetable
But there is more. Since you can use an object like an associative array, you can process keys and values,
just like a foreach loop :
// looping over its properties and values
for (meal_name in diner ) {
document.write(meal_name+" : "+diner[meal_name]+"<br \n>");
}
Result :
fruit : apple
veggetable : bean
And since Array are objects too, you can iterate other array the exact same way :
var my_array = ['a', 'b', 'c'];
for (index in my_array ) {
document.write(index+" : "+my_array[index]+"<br \n>");
}
Result :
0 : a
1 : b
3 : c
You can remove easily an known element from an array
var arr = ['a', 'b', 'c', 'd'];
var pos = arr.indexOf('c');
pos > -1 && arr.splice( pos, 1 );
You can shuffle easily an array
arr.sort(function() Math.random() > 0.5 ? 1 : -1);