|
|
|
|
|
by jacobolus
1631 days ago
|
|
Obviously you can alternately write: let input = [1, 2, 3, 4, 5], output = [];
for (let i = 0; i < input.length; ++i) {
let n = input[i];
if (n % 2) output.push(2*n);
}
return output;
But in some circumstances the other style can be more convenient / legible. The immediate question was about pushing to an array and then returning the array, for which the comma operator can be handy. |
|
FWIW, it's 2022: