RunKit + npm: lodash

node v10.24.1
endpointsharetweet
// Load the full build of lodash var _ = require('lodash'); // merge objects console.log( _.assign({ 'a': 1 }, { 'b': 2 }, { 'c': 3 }) ) // map an array console.log( _.map([1, 2, 3], function(n) { return n * 3; }) )
Created from: https://npm.runkit.com/lodash
Loading…