What happened to Lodash _.pluck?

前端 未结 5 2320
情深已故
情深已故 2020-11-29 19:21

I once used Lodash _.pluck...I loved pluck...

Realizing Lodash no longer supports pluck (as of Lodash 4.x), I\'m struggling to remember wha

5条回答
  •  时光说笑
    2020-11-29 20:05

    Or try pure ES6 nonlodash method like this

    const reducer = (array, object) => {
      array.push(object.a)
      return array
    }
    
    var objects = [{ 'a': 1 }, { 'a': 2 }];
    objects.reduce(reducer, [])
    

提交回复
热议问题