You are viewing a single comment's thread. Return to all comments →
function modifyArray(nums) { for (let i = 0; i < nums.length; i++) { if (nums[i] % 2 === 0) { nums[i] = nums[i] * 2; } else { nums[i] = nums[i] * 3; } } return nums; }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 5: Arrow Functions
You are viewing a single comment's thread. Return to all comments →