How to get a subset of a javascript object's properties

后端 未结 27 1646
刺人心
刺人心 2020-11-21 22:46

Say I have an object:

elmo = { 
  color: \'red\',
  annoying: true,
  height: \'unknown\',
  meta: { one: \'1\', two: \'2\'}
};

I want to m

27条回答
  •  北海茫月
    2020-11-21 23:43

    One more solution:

    var subset = {
       color: elmo.color,
       height: elmo.height 
    }
    

    This looks far more readable to me than pretty much any answer so far, but maybe that's just me!

提交回复
热议问题