matrix-fill
v1.0.1
Published
Initializes and fills a 2D matrix with a given value.
Downloads
6
Readme
matrix-fill
Create and fill in 2D Array of any type.
Install
Install with npm:
$ npm install --save matrix-fill
Usage
Returns 2D array of values of any type.
const fill = require('matrix-fill');
console.log(fill('abc', 5, 5))
//=> [ [ 'abc', 'abc', 'abc', 'abc', 'abc' ],
// [ 'abc', 'abc', 'abc', 'abc', 'abc' ],
// [ 'abc', 'abc', 'abc', 'abc', 'abc' ],
// [ 'abc', 'abc', 'abc', 'abc', 'abc' ],
// [ 'abc', 'abc', 'abc', 'abc', 'abc' ] ]
console.log(fill(5, 5, 5))
//=> [ [ 5, 5, 5, 5, 5 ],
// [ 5, 5, 5, 5, 5 ],
// [ 5, 5, 5, 5, 5 ],
// [ 5, 5, 5, 5, 5 ],
// [ 5, 5, 5, 5, 5 ] ]
console.log(fill({name: 'steve'}, 3, 3));
// [ [ { name: 'steve' }, { name: 'steve' }, { name: 'steve' } ],
// [ { name: 'steve' }, { name: 'steve' }, { name: 'steve' } ],
// [ { name: 'steve' }, { name: 'steve' }, { name: 'steve' } ] ]
Params
fill(value, rows, columns);
value
: {*} the value to fill the matrix with.rows
: {Number} the number of rows in the matrix.columns
: {Number} the number of columns in the matrix.