Answers for "js set object property"

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
0

set property js

There might not seem to be a difference with 'color' but consider:

element.style.backgroundColor = 'blue' // works
element.style['backgroundColor'] = 'blue' // works
element.style['background-color'] = 'blue' // does not work

element.style.setProperty('background-color','blue') // works
element.style.setProperty('backgroundColor','blue') // does not work
Posted by: Guest on July-27-2021
14

javascript add to object

var element = {}, cart = [];
element.id = id;
element.quantity = quantity;
cart.push(element);

// Array of Objects in form {element: {id: 10, quantity: 10} }
var element = {}, cart = [];
element.id = id;
element.quantity = quantity;
cart.push({element: element});
Posted by: Guest on March-13-2020
1

how to change object property value in javascript

myObject.sProp = 'A new string value for our original string property';
Posted by: Guest on February-07-2021
1

javascript object string property

// Also useful for dynamic strings, e.g. `thing-${variable}`
myObject['thing'] = true;
Posted by: Guest on April-03-2020
2

js create object with properties

function Car(make, model, year) {
  this.make = make;
  this.model = model;
  this.year = year;
}
Posted by: Guest on April-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language