Underscore.js Functions Complete Reference
Underscore.js is a lightweight JavaScript library and not a complete framework that was written by Jeremy Ashkenas that provides utility functions for a variety of use cases in our day-to-day common programming tasks.
Underscore provides a number of functions that can be applied to the elements. These include the ability to bind a function to an object, wrap a function inside another function, memorize a given function by caching the result computed by the function, apply partially a function by filling in any number of its arguments, without changing its dynamic value and many other wonderful functionalities.
The complete reference for underscore functions is provided below:
- Underscore.js _.bind() Function
- Underscore.js _.bindAll() Function
- Underscore.js _.partial() Function
- Underscore.js _.memoize() Function
- Underscore.js _.delay() Function
- Underscore.js _.defer() Function
- Underscore.js _.throttle() Function
- Underscore.js _.debounce() Function
- Underscore.js _.once() Function
- Underscore.js _.after() Function
- Underscore.js _.before() Function
- Underscore.js _.wrap() Function
- Underscore.js _.negate() Function
- Underscore.js _.compose() Function
- Underscore.js _.restArguments() Function
Please Login to comment...