Update percentile.md

This commit is contained in:
atomiks
2017-12-13 22:23:43 +11:00
committed by GitHub
parent 32d182d1f6
commit b9edc9a852

View File

@ -1,6 +1,6 @@
### Percentile
Use `Array.filter()` to calculate how many numbers are below the value and how many are the same value and
Use `Array.reduce()` to calculate how many numbers are below the value and how many are the same value and
apply the percentile formula.
```js