Travis build: 1449

This commit is contained in:
30secondsofcode
2018-01-27 12:10:33 +00:00
parent 9add97d10c
commit 452fba43a1
2 changed files with 2 additions and 2 deletions

View File

@@ -3940,7 +3940,7 @@ unfold(f, 10); // [-10, -20, -30, -40, -50]
### average
Returns the average of an of two or more numbers.
Returns the average of two or more numbers.
Use `Array.reduce()` to add each value to an accumulator, initialized with a value of `0`, divide by the `length` of the array.