_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });. // → { 'a': 1, 'b': 2 }. _.partition([1, 2, 3, 4], n => n % 2);. // → [[1, 3], [2, 4]] ...
確定! 回上一頁