5 lines
83 B
JavaScript
5 lines
83 B
JavaScript
for (let i in arr) {
|
|
const MULTIPLIER = 5;
|
|
console.log(arr[i] * MULTIPLIER);
|
|
}
|