- Underscore.JS - Discussion
- Underscore.JS - Useful Resources
- Underscore.JS - Quick Guide
- Underscore.JS - Chaining
- Underscore.JS - Utilities
- Underscore.JS - Comparing Objects
- Underscore.JS - Updating Objects
- Underscore.JS - Mapping Objects
- Underscore.JS - Functions
- Underscore.JS - Processing Array
- Underscore.JS - Iterating Array
- Underscore.JS - Processing Collection
- Underscore.JS - Iterating Collection
- Underscore.JS - Environment Setup
- Underscore.JS - Overview
- Underscore.JS - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Underscore.JS - Overview
Underscore.JS is a popular javascript based pbrary which provides 100+ functions to faciptate web development. It provides helper functions pke map, filter, invoke as well as function binding, javascript templating, deep equapty checks, creating indexes and so on. Underscore.JS can be used directly inside a browser and also with Node.js.
Working with objects using JavaScript can be quite challenging, specifically if you have lots of manipulation to be done with them. Underscore comes with lots of features that eases your work with objects.
Underscore.JS is an open source project and you can easily contribute to the pbrary and add features in the form of plugins and make it available on GitHub and in Node.js.
Features
Let us understand in detail all the important features available with Underscore −
Collections
Underscore.JS provides various functions for collections pke each, map, reduce which are used to apply an operation on each item of a collection. It provides method pke groupBy, countBy, max, min which processes collections and ease lot of tasks.
Arrays
Underscore.JS provides various functions for arrays pke to iterate and process arrays pke first, initial, lastIndexOf, intersection, difference etc.
Functions
Underscore.JS provides functions such as bind, delay, before, after etc.
Objects
Underscore.JS provides functions to manipulate objects, to map objects and comparing objects. For example, keys, values, extends, extendsOwn, isEqual, isEmpty etc.
Utipties
Underscore.JS provides various utipties methods pke noConfpct, random, iteratee, escape etc.
Chaining
Underscore.JS provides chaining methods as well pke chain, value.
In subsequent chapters, we ll cover importants functions of Underscore.JS
Advertisements