change property name

后端 未结 4 1337
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-28 07:44

I have a JavaScript object as follows:

var a = { Prop1: \'test\', Prop2: \'test2\' }

How would I change the \"property name\" of Prop1 to P

4条回答
  •  有刺的猬
    2020-11-28 08:36

    That isn't directly possible.

    You can just write

    a.Prop3 = a.Prop1;
    delete a.Prop1;
    

提交回复
热议问题