-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
My God, please never use for (var i in array) { ... array[i] ... }.
Alternatives:
// Instead of
for (var i in array) {
console.log(array[i]);
}
// PLEASE use
for (var i = 0; i < array.length; i ++) {
console.log(array[i]);
}
// or
array.forEach(function (e) {
console.log(e);
});
****That's odd, I can type in here.... -Blaze