How can I add a key/value pair to a JavaScript object?

前端 未结 24 3327
情歌与酒
情歌与酒 2020-11-21 07:01

Here is my object literal:

var obj = {key1: value1, key2: value2};

How can I add field key3 with value3 to the ob

24条回答
  •  独厮守ぢ
    2020-11-21 07:43

    Your example shows an Object, not an Array. In that case, the preferred way to add a field to an Object is to just assign to it, like so:

    arr.key3 = value3;
    

提交回复
热议问题