mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
265 B
16 lines
265 B
4 years ago
|
## Average
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Declare the function `average` that compute the average of all the values from
|
||
|
the given array
|
||
|
|
||
|
If the array is empty, `average` should return `NaN`
|
||
|
|
||
|
**Example:**
|
||
|
|
||
|
```js
|
||
|
average([1, 1, 4]) // -> 2
|
||
|
average([1, 4, 8, 12]) // -> 6.25
|
||
|
```
|