Languages
[Edit]
EN

JavaScript - add dynamically named properties to object

0 points
Created by:
James-Z
767

In this article, we would like to show you how to add dynamically named properties to an object in JavaScript.

Quick solution:

var myObject = {
    'property1': 1,
    'property2': 2
};

myObject["property3"] = 3;  // add third property to object

 

Practical example

In this example, we add a third property to myObject.

// ONLINE-RUNNER:browser;

var myObject = {
    'property1': 1,
    'property2': 2
};

myObject["property3"] = 3;

console.log(myObject.property3);     // 3
console.log(myObject["property3"]);  // 3

Alternative titles

  1. JavaScript - add object property dynamically named
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join