Travis build: 1163
This commit is contained in:
@ -23,6 +23,7 @@ const httpPost = (url, callback, data = null, err = console.error) => {
|
||||
```js
|
||||
|
||||
|
||||
|
||||
const newPost = {
|
||||
"userId": 1,
|
||||
"id": 1337,
|
||||
|
||||
@ -6,7 +6,7 @@ Use `Array.map()` to generate h rows where each is a new array of size w initial
|
||||
|
||||
```js
|
||||
const initialize2DArray = (w, h, val = null) =>
|
||||
Array.from({ length: h }).map(() => Array.from({ length: w}).fill(val));
|
||||
Array.from({ length: h }).map(() => Array.from({ length: w }).fill(val));
|
||||
```
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user