Answers for "add property with value in js"

14

how to add property to object in javascript

var data = {
    'PropertyA': 1,
    'PropertyB': 2,
    'PropertyC': 3
};

data["PropertyD"] = 4;

// dialog box with 4 in it
alert(data.PropertyD);
alert(data["PropertyD"]);
Posted by: Guest on April-16-2020
2

add property to object javascript

let yourObject = {};

//Examples:
//Example 1
let yourKeyVariable = "yourKey";
yourObject[yourKeyVariable] = "yourValue";

//Example 2
yourObject["yourKey"] = "yourValue";

//Example 3
yourObject.yourKey = "yourValue";
Posted by: Guest on September-28-2020
0

add property with value in js

var myObject = {
    sProp: 'some string value',
    numProp: 2,
    bProp: false
};
Posted by: Guest on October-23-2020

Code answers related to "add property with value in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language