values​​_.values(object)​​ 

返回object对象所有的属性值。

_.values({one: 1, two: 2, three: 3});
=> [1, 2, 3]

链接:http://underscorejs.org/#values