- Underscore.JS - Home
- Underscore.JS - Overview
- Underscore.JS - Environment Setup
- Underscore.JS - Iterating Collection
- Underscore.JS - Processing Collection
- Underscore.JS - Iterating Array
- Underscore.JS - Processing Array
- Underscore.JS - Functions
- Underscore.JS - Mapping Objects
- Underscore.JS - Updating Objects
- Underscore.JS - Comparing Objects
- Underscore.JS - Utilities
- Underscore.JS - Chaining
- Underscore.JS Useful Resources
- Underscore.JS - Quick Guide
- Underscore.JS - Useful Resources
- Underscore.JS - Discussion
Underscore.JS - zip method
Syntax
_.zip(*arrays)
zip method merges arrays with the values at corresponding indexes.
Example
var _ = require('underscore');
var list1 = ['Sam', 'Joe', 'Julie']
var list2 = [1, 2, 3]
var list3 = [true, false, true]
//Example 1: merge list1 and list2
result = _.zip(list1, list2);
console.log(result)
//Example 2: merge list1,list2 and list3
result = _.zip(list1, list2, list3);
console.log(result)
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
[ [ 'Sam', 1 ], [ 'Joe', 2 ], [ 'Julie', 3 ] ] [ [ 'Sam', 1, true ], [ 'Joe', 2, false ], [ 'Julie', 3, true ] ]
underscorejs_processing_array.htm
Advertisements