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

前端 未结 24 3317
情歌与酒
情歌与酒 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:31

    You can either add it this way:

    arr['key3'] = value3;
    

    or this way:

    arr.key3 = value3;
    

    The answers suggesting keying into the object with the variable key3 would only work if the value of key3 was 'key3'.

提交回复
热议问题