Software Alternatives & Reviews
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

Underscore.js

Underscore is a utility-belt library for JavaScript that provides a lot of the functional...

Underscore.js Reviews and details

Screenshots and images

  • Underscore.js Landing page
    Landing page //
    2018-12-17

Badges

Promote Underscore.js. You can add any of these badges on your website.
SaaSHub badge
Show embed code

Videos

Introduction to Underscore.JS

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Underscore.js and what they use it for.
  • 8 NPM Packages for JavaScript Beginners [2024][+tutorials]
    Not too far behind is Underscore.js, another utility library that's all about enhancing your JavaScript mojo. Whether you're dealing with arrays, objects, or strings, Underscore has got something for you. It's like Lodash's sibling, offering similar functionalities but with its own flair. The choice between them is like picking between chocolate and vanilla - it really comes down to personal taste. - Source: dev.to / about 1 month ago
  • Discovered a 63kb tiddlywiki like self saving HTML+JS wiki and its looking cool
    I once made a very crude and simple TiddlyWiki work-alike I called "HulloWurld" https://github.com/calroc/HulloWurld It's 143 KB, but it includes copies of Knockout, Underscore, Zepto, and the "Marked" markdown parser... ¯\_(ツ)_/¯ ( Good stuff BTW: http://knockoutjs.com/ http://underscorejs.org/ https://zeptojs.com/ https://github.com/chjj/marked ) Probably the only interesting bit is the code to save the page:... - Source: Hacker News / almost 2 years ago
  • Underscore.js: create a map out of list of objects using a key found in the object
    I am using the excellent Underscore.js library. I have a specific task which I can do fine using JavaScript or jQuery but was wondering if there was some sort of abstraction avaialable in Underscore that I was missing out on. Source: about 2 years ago
  • Asking Functional vs Class components again.
    There are many functional libraries for js like underscore, ramda, or even ts specific ones like fp-ts. Source: about 2 years ago
  • How to detect scroll direction in vanilla JavaScript (to make a goofy logo animation)
    /* Source: https://underscorejs.org/underscore-esm.js During a given window of time. Normally, the throttled function will run As much as it can, without ever going more than once per `wait` duration; But if you'd like to disable the execution on the leading edge, pass `{leading: false}`. To disable execution on the trailing edge, ditto. */ Function throttle(func, wait, options) { var timeout, context, args,... - Source: dev.to / about 2 years ago
  • Is it possible to get the index you're sorting over in Underscore.js?
    I'm using the JS library Underscore and in particular using the _.each and _.sortby library calls. I'm wondering if there's any possible way to get the index of the value within the iterator delegate. Source: about 2 years ago
  • Lenses and Partial-application - Going functional one step at a time
    The code illustrated in this post is not recommended for use in production but the concepts most certainly are. Libraries like lodash and underscope provide many tried and tested, production-ready functions, some from the FP camp, that can simplify your code and make it easier to create reusable code. - Source: dev.to / about 2 years ago
  • Can someone tell me the use of Loadash in node js?
    Underscore might still be used some places, but it's been largely supplanted. Source: about 2 years ago
  • [AskJS] TIL StackOverflow monkeypatches the String prototype across its various sites.
    Underscore, then Lodash are examples for JavaScript of how useful features can be developed in a third party library that influence adoption in the language standard. As an example, Lodash would have been an inspiration / push for the ES2019 flatMap and ~flatten~ flat Array methods, without having modified the global prototypes. Lodash's lazy evaluation is listed as an inspiration in the current iterator helpers... Source: about 2 years ago
  • Mastering Docker Volumes
    Imagine we want to print the timestamp for current time. We can do this in a lot of ways, but as for now we're going to use the underscore library. - Source: dev.to / about 2 years ago
  • Open source maintainer pulls the plug on NPM packages colors and faker, now what
    It's both technical and cultural. Javascript is used on the front end. Front end devs obsess (or at least used to obsess) over download sized. So you'd have crazy stuff like custom builds of Underscore (https://underscorejs.org/) with just the functions you wanted. Think manual sandboxing, if that makes any sense. You could get a package of Underscore with just map, filter and reduceRight, if you wanted to. Now,... - Source: Hacker News / over 2 years ago
  • The Frontend Hitchhiker's Guide: 3rd Party Code
    These are libraries that are small and focused on making a specific problem easier for the developer. Moment.js can make displaying time based data and perform various operations with it. Underscore adds a collection of functional programming primitives to JavaScript if that's your cup of tea. Lodash is similar in providing functions to make working with arrays, numbers objects easier. - Source: dev.to / almost 3 years ago
  • Lodash in 2021: Necessary or Obsolete?
    If you have a couple of years as a developer, you've probably used either Lodash or Underscore.js. These are two libraries that provide a bunch of utilities to manipulate data, particularly array and objects. - Source: dev.to / almost 3 years ago
  • How to inject Object.values() into an Array chain
    My first experience with the pattern was in JavaScript chaining jQuery calls. When Underscore came out I used its chain feature to write faster and cleaner code. Loved it! - Source: dev.to / almost 3 years ago
  • Firefox fixes 21 year old bug, will use native context menus on macOS
    DocumentCloud and Investigative Reporters & Editors They've given precisely as much attribution as is required. - Source: Hacker News / almost 3 years ago
  • Create an Odoo 14 Markdown Widget Field with TDD - Part 2
    Debouncing an input in JavaScript is a common technique to reduce the rate of execution of a function. If a user is typing inside an input and you execute a function on each change of that input (each letter typed) it can quickly lead to a lot of computation power being used on just that. The common technique is called debounced and it will delay the execution of the function listening to the input, only every X... - Source: dev.to / about 3 years ago
  • Create a memoized function in JavaScript
    One of the first software development courses I ever took involved recreating the well known JavaScript library Underscore.js from scratch. Implementing more basic ones like each or map were manageable for me, but when we reached the more advanced ones, I was unable to keep up. One of the functions that really gave me a lot of trouble was memoize. I figuratively banged my head up against the wall with this... - Source: dev.to / about 3 years ago
  • 5 Ways to Increase Your Efficiency as a Developer
    But don’t overdo it. You shouldn’t import underscore or lodash just to loop through an array. It only increases your package size and hurts the user experience. - Source: dev.to / about 3 years ago
  • 21 Popular JavaScript Libraries Every Web Developer Should Know
    Underscore is a lower level JavaScript library. Lower level in that it’s very close to vanilla JavaScript. All it does is provide you with some helpers and tools to create web applications faster. - Source: dev.to / about 3 years ago

Do you know an article comparing Underscore.js to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Underscore.js discussion

Log in or Post with

This is an informative page about Underscore.js. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.