underscore/toArray()

解説
objectの値を配列にして返す。
_.toArray(obj);
	
Underscore.js
(function(){
  const s1Obj = {name: "aaa", score: 78, color: "blue"}
  var s1 = _.toArray(s1Obj);
  console.log(s1);// [ "aaa", 78, "blue" ]
})();