Lodash - prototype.plant method



Syntax

_.prototype.plant(value)

Creates a clone of the chain sequence planting value as the wrapped value.

Arguments

  • value (*) − The value to plant.

Output

  • (Object) − Returns the new lodash wrapper instance.

Example

var _ = require('lodash');  
function square(n) {
   return n * n;
}
 
var wrapped = _([1, 2]).map(square);
var other = wrapped.plant([3, 4]);
 
console.log(other.value());
console.log(wrapped.value());

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

Command

\>node tester.js

Output

[ 9, 16 ]
[ 1, 4 ]
lodash_seq.htm
Advertisements