Underscore.js 1.7の使い方 Collections編 values

var r = document.getElementById("r");
r.innerHTML = _.values({one: 1, two: 2, three: 3});
// => [1, 2, 3]