@stdlib/array-base-filled

Create a filled generic array.

Usage no npm install needed!

<script type="module">
  import stdlibArrayBaseFilled from 'https://cdn.skypack.dev/@stdlib/array-base-filled';
</script>

README

filled

NPM version Build Status Coverage Status

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 );
// returns [ 0.0, 0.0, 0.0 ]

Examples

var filled = require( '@stdlib/array-base-filled' );

var out = filled( 0.0, 3 );
// returns [ 0.0, 0.0, 0.0 ]

out = filled( 'beep', 3 );
// returns [ 'beep', 'beep', 'beep' ]

out = filled( null, 3 );
// returns [ null, null, null ]

out = filled( true, 3 );
// returns [ true, true, true ]

out = filled( void 0, 3 );
// returns [ undefined, undefined, undefined ]

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.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2022. The Stdlib Authors.