0s
Version:
A tool to create an array filled with 0's
24 lines (16 loc) • 359 B
Markdown
with only 0's
To install, run
$ npm install --save 0s
To use, require it first by
var zeroes = require("0s");
Then input the array length that you want
zeroes() // []
zeroes(0) // []
zeroes(1) // [1]
zeroes(5) // [1, 1, 1, 1, 1]
## Versions
**1.0.0**
First version
A simple tool to create an array