Question: please help me solve these 2 questions of basic javaScript 3. Call the Math.max() function and pass the nums array to it. Do not forget
please help me solve these 2 questions of basic javaScript

3. Call the Math.max() function and pass the nums array to it. Do not forget to use spread operator to convert the array to multiple arguments expected by the max function. let nums = [1, 2, 3, 4, 45, 5, 6] 4. Consider the following the square function and nums array. function square(x) { return x **2; } let numbers = [1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 10]; a. Use the square function along with the array map function to square the elements of nums array and assigned the results to squaredNums. Then Display squared Nums. b. Enhance the implementation done in previous question by removing the square function and using anonymous arrow function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
