Added tagger script, tagged snippets retroactively

This commit is contained in:
Angelos Chalaris
2017-12-14 17:56:12 +02:00
parent aec1f85ee9
commit 143b7f6a23
6 changed files with 1080 additions and 55 deletions

View File

@ -4,7 +4,6 @@ Use `Array.slice()` to create a slice of the array with `n` elements taken from
```js
const take = (arr, n = 1) => arr.slice(0, n);
// take([1, 2, 3], 5) -> [1, 2, 3]
// take([1, 2, 3], 0) -> []
```