Files
30-seconds-of-code/snippets/initialize-array-with-values.md
2017-11-30 20:07:02 +02:00

10 lines
252 B
Markdown

### Initialize array with values
Use `Array(n)` to create an array of the desired length, `fill(v)` to fill it with the desired values.
You can omit `v` to use a default value of `0`.
```js
var initializeArray = (n, v = 0) =>
Array(n).fill(v);
```