- 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 - constant method
Syntax
_.constant(value)
constant method creates a function that returns the same value which is passed as argument. See the below example:
Example
var _ = require('underscore');
var value = {name: 'Sam'};
//Example 1: Check if constant returns same object
console.log(value === _.constant(value)());
value = 1;
//Example 2: Check if constant returns same object
console.log(value === _.constant(value)());
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
true true
underscorejs_utilities.htm
Advertisements