Ember Enumerables
16 Dec 2015Ember Enumerables
var array = [];
//Iterating
array.forEach(function (item, index){
console.log("Index: "+ index + "| Item: " + item);
});
Ember Enumerables
var array = [];
//Iterating
array.forEach(function (item, index){
console.log("Index: "+ index + "| Item: " + item);
});