Thu Apr 08 2021 14:29:37 GMT+0000 (Coordinated Universal Time)
Saved by @latifa_amaireh
let testArray = [2, 3, 4]; function sumArray(sumArr) { let add = sum(sumArr[0],sumArr[1])[0] + sumArr[2]; return [add,`${sumArr[0]},${sumArr[1]},${sumArr[2]} was passed in as an array of numbers, and ${add} is their sum.`] } testSumArray(testArray);
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments