Travis build: 1231

This commit is contained in:
30secondsofcode
2018-01-15 12:03:06 +00:00
parent fef6f0e098
commit 49416acd4b
4 changed files with 30 additions and 3 deletions

View File

@ -6,7 +6,7 @@ Use `Array.from()` to create an empty array of the specific length, `Math.random
```js
const randomIntArrayInRange = (min, max, n = 1) =>
Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
```
```js