sumAll([4,1])
should return 10
because sum of all the numbers between 1 and 4 (both inclusive) is 10
.
Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
sumAll([1, 4])
should return a number.
testString: assert(typeof sumAll([1, 4]) === 'number');
- text: sumAll([1, 4])
should return 10.
testString: assert.deepEqual(sumAll([1, 4]), 10);
- text: sumAll([4, 1])
should return 10.
testString: assert.deepEqual(sumAll([4, 1]), 10);
- text: sumAll([5, 10])
should return 45.
testString: assert.deepEqual(sumAll([5, 10]), 45);
- text: sumAll([10, 5])
should return 45.
testString: assert.deepEqual(sumAll([10, 5]), 45);
```