- 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 - mixin method
Syntax
_.mixin(object)
mixin method helps to extend underscore with our own utility function. A function can be passed as {hash: function}. See the below example −
Example
var _ = require('underscore');
_.mixin({
toCapitalCase: function(string){
return string.charAt(0).toUpperCase() + string.substring(1).toLowerCase();
}
});
console.log(_("sam").toCapitalCase());
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
9 5
underscorejs_utilities.htm
Advertisements