Underscore.JS - toArray method



Syntax

_.toArray(list)

toArray method gives an array prepared using items of the list provided.

Example

var _ = require('underscore');

//Example: get a array of 4 elements
result = _.toArray("abcd").slice(0,4)
console.log(result)

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

Command

\>node tester.js

Output

[ 'a', 'b', 'c', 'd' ]
underscorejs_processing_collection.htm
Advertisements