- 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 - functions method
Syntax
_.create(prototype, props)
create method create a new object with given prototype and attaches the props as own properties. See the below example −
Example
var _ = require('underscore');
var student = {
name: 'Sam',
age: 10,
print: function(){
console.log(name +", " + age);
}
}
var result = _.functions(student);
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
[ 'print' ]
underscorejs_mapping_objects.htm
Advertisements