Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I suggest taking a look at Lodash; it has a lot of great utility functions.
For example pick() would be exactly what you seek:
pick()
var subset = _(elmo).pick('color'elmo, 'height'['color', 'height']);
fiddle
var subset = _(elmo).pick('color', 'height');
var subset = _.pick(elmo, ['color', 'height']);
I suggest taking a look at Underscore.jsLodash; it has a lot of great utility functions.
For example pick()pick() would be exactly what you seek:
fiddlefiddle
I suggest taking a look at Underscore.js; it has a lot of great utility functions.