add snippet toKebabCase

This commit is contained in:
Rohit Tanwar
2017-12-22 22:44:51 +05:30
parent 4deb253d4c
commit 74d043b867
4 changed files with 22 additions and 9 deletions

View File

@ -5,6 +5,6 @@ Returns the minimum value in an array.
Use `Math.min()` combined with the spread operator (`...`) to get the minimum value in the array.
```js
const arrayMin = arr => Math.min(...arr);
const arrayMin = zzarr => Math.min(...arr);
// arrayMin([10, 1, 5]) -> 1
```