Update percentile.md

This commit is contained in:
atomiks
2017-12-13 22:23:43 +11:00
committed by GitHub
parent 60d8afaf73
commit 8275fe5ffe

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