- 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 - size method
Syntax
_.size(list)
size method gives the length of a list.
Example
var _ = require('underscore');
//Example 1: get a size of a list of numbers
result = _.size([1, 2, 3, 4])
console.log(result)
//Example 2: get a size of a object
result = _.size({"one": 1, "two": 2, "three": 3})
console.log(result)
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
4 3
underscorejs_processing_collection.htm
Advertisements