Describe Underscore.js is ?

devquora
devquora

Posted On: Feb 22, 2018

 

Underscore.js is a javascript library that provides helper functions to manipulate an object without extending code any core JavaScript objects.It helps us to write cleaner code which is easy to read and understand. Underscore.js is written by Jeremy Ashkenas and is an open-source component of DocumentCloud.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Underscore.js Interview Questions

    Explain Collection Functions in Underscore.js.list some under collection functions in Underscore.js?

    Collection Functions are functions that work on arrays, objects, and array-like objects such as arguments, NodeList and..

    Underscore.js Interview Questions

    How to check an element exists or not in an array in Underscore.js?

    _.contains method is used to check an element in array exists or not in Underscore.js. Prototype : _.contains(list, valu..