2014-11-23 16:15:39 +11:00

7 lines
96 B
JavaScript

"use strict";
for (var i in arr) {
var MULTIPLIER = 5;
console.log(arr[i] * MULTIPLIER);
}