underscore/size()

解説
配列の長さを返す。
_.size(Array);
	
Underscore.js
(function(){
  const s1Obj = {name: "aaa", score: 78, color: "blue"}
  var s1 = _.size(s1Obj);
  console.log(s1);//3
})();