_.zipObject([props=[]], [values=[]])
这个方法类似 _.fromPairs,除了它接受2个数组,一个作为属性名,一个作为属性值。
_.fromPairs
[props=[]] (Array)
属性名
[values=[]] (Array)
属性值
返回一个新的对象
_.zipObject(['a', 'b'], [1, 2]); // => { 'a': 1, 'b': 2 }