Lodash - toArray method



Syntax

_.toArray(value)

Converts value to an array.

Arguments

  • value (*) − The value to check.

Output

  • (Array) − Returns the converted array.

Example

var _ = require('lodash');

console.log(_.toArray({ 'a': 1, 'b': 2 }));
console.log(_.toArray('abc'));

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

Command

\>node tester.js

Output

[ 1, 2 ]
[ 'a', 'b', 'c' ]
lodash_lang.htm
Advertisements