Ember Enumerables

Ember Enumerables

var array = [];

//Iterating
array.forEach(function (item, index){
  console.log("Index: "+ index + "| Item: " + item);
});