0
據lodash v3.10.1
,it is possible文檔使用_.zipObject
這樣這樣的:zipObject在lodash v.4.xx
_.zipObject([['fred', 30], ['barney', 40]]);
// => { 'fred': 30, 'barney': 40 }
但在lodash v.4.15.0 I,M剛開這樣:
_.zipObject([['fred', 30], ['barney', 40]]);
{ 'fred,30': undefined, 'barney,40': undefined }