Public
Script
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

lodash

Lodash is the most popular npm module. It provides helpers for functional programming, common algorithms, and a lot more. Before JavaScript had built-in methods for Array.map, lodash (and underscore before it) provided those methods.

1
2
3
4
export let lodashExample = (async () => {
const _ = await import("npm:lodash-es");
return _.min([1, 2, 3]);
})();
October 23, 2023