An open API service indexing awesome lists of open source software.

https://github.com/bytespider/average

The result obtained by adding several amounts together and then dividing this total by the number of amounts; the mean.
https://github.com/bytespider/average

Last synced: 9 months ago
JSON representation

The result obtained by adding several amounts together and then dividing this total by the number of amounts; the mean.

Awesome Lists containing this project

README

          

# average
The matematical average, the result obtained by adding several amounts together and then dividing this total by the number of amounts; the mean.

# example

```
var average = require('average');
var result = average([2, 5, 0, 1, 25, 7, 3, 0, 0, 10]);

console.log('The average for all the values is:', result);
```

# license

MIT