You are viewing a single comment's thread. Return to all comments →
function modifyArray(nums) { let newArr = nums.map(x => x % 2 === 0 ? x * 2 : x * 3); return newArr; }
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 →
function modifyArray(nums) { let newArr = nums.map(x => x % 2 === 0 ? x * 2 : x * 3); return newArr; }