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