Lodash - prototype[Symbol.iterator] method



Syntax

_.prototype[Symbol.iterator]()

Enables the wrapper to be iterable.

Output

  • (Object) − Returns the wrapper object.

Example

var _ = require('lodash');  
var wrapped = _([1, 2]);
var result = wrapped[Symbol.iterator]() === wrapped;
   
console.log(result);

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

Command

\>node tester.js

Output

true
true
lodash_seq.htm
Advertisements