One of underscore.js’s most useful methods is _.pluck. It takes an array of objects and "plucks" one property out of each, returning an array of the resulting values: > _.pluck([{k1: 1, k2: 3}, {k1: 5, k2: 1}], 'k1')
[1, 5] This mixing of string literals and property names is a…