7 Days of JS: myElement + n
- JavaScript
- Challenge
- Lautaro Lobo
- 04 Dec, 2019
Welcome to day 6 of 7 Days of JavaScript!
Let’s see, I got a nice one for today.
Given an array and a number n
, return the array with each element summed to n
.
Here’s an example:
sumToArray(5,[1,2,3,4])
...
[6,7,8,9]
If you want, you can also return the output as a string- If that makes it easier for you, it’s OK.
You can check out the solution algorithm here.