lodash - project/transform object into key value array

前端 未结 6 696
没有蜡笔的小新
没有蜡笔的小新 2020-12-05 13:10

I\'m about to use forOwn to iterate through an object\'s properties and create an array manually and can\'t helping thinking there\'s a oneliner already availab

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-05 14:14

    You don't even need lodash for that:

    var arr = Object.keys(obj).map(function(key){
      return { key: key, value: obj[key] };
    });
    

提交回复
热议问题