Practice question For Functional programming in JS LEVEL `1`
Problems using map(), filter() and reduce(). Q1. Write an ES6 function that takes an array of numbers and returns an array with each number incremented by 3 using the map method. // Your ES6 function here const incrementNumbers = (numbers) => { ret...