Lodash – fill method

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment
Lodash - fill method

Syntax of Lodash fill method

_.fill(array, value, [start=0], [end=array.length])

The Lodash fills method elements of the array with the value from start-up to, but not including, end.

Arguments

  • array (Array) โˆ’ The array to fill.
  • value (*) โˆ’ The value to fill array with.
  • [start=0] (number) โˆ’ The start position.
  • [end=array.length] (number) โˆ’ The end position.

Output

  • (Array) โˆ’ Returns array.

Example

var _ = require('lodash');
var numbers = [5, 6, 7, 8];

_.fill(numbers, 'a');
console.log(numbers);

_.fill(numbers, '*', 1,3);
console.log(numbers);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 'a', 'a', 'a', 'a' ]
[ 'a', '*', '*', 'a' ]

Next Topic – Click Here

This Post Has One Comment

Leave a Reply