Underscore.js 1.7の使い方 Collections編 pairs

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