filled
Create a filled "generic" array.
Installation
npm install @stdlib/array-base-filled
Usage
var filled = require( '@stdlib/array-base-filled' );
filled( value, len )
Returns a filled "generic" array.
var out = filled( 0.0, 3 );
Examples
var filled = require( '@stdlib/array-base-filled' );
var out = filled( 0.0, 3 );
out = filled( 'beep', 3 );
out = filled( null, 3 );
out = filled( true, 3 );
out = filled( void 0, 3 );
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
License
See LICENSE.
Copyright
Copyright © 2016-2022. The Stdlib Authors.