
How can I add a key/value pair to a JavaScript object
How can I add a key/value pair to a JavaScript object
In this article, we will see how to solve "How can I add a key/value pair to a JavaScript object".
You can add key/value pair to a javascript object using dot notation and square brackets notation.-
Add key/value pair to javascript object using dot notation
<script> const obj = { key1: 'value1', key2: 'value2' }; obj.key3 = "value3"; console.log(obj); </script>
Output:
{ key1: 'value1', key2: 'value2', key3: 'value3' }
You have to use dot notation in between object and new key (object.key) and assign value to key using assignment operator (=) in javascript to add a new key and value pair to an existing javascript object.
-
Add key/value pair to javascript object usign square bracket notation
<script> const obj = { key1: 'value1', key2: 'value2' }; obj["key3"] = "value3"; console.log(obj); </script>
Output:
{ key1: 'value1', key2: 'value2', key3: 'value3' }
You can add a new key/value pair to object in javascript using square ([]) notation. It will helps you to add a new values (key/value) to an existing object in javascript.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Javascript
- Uncaught TypeError: $(...).summernote is not a function
- How to display an image in Javascript onclick
- How to add key/value pair to existing form data
- Prism js horizontally overflowing its container
- Copy one array to another in javascript
- How to validate empty space in textbox in Javascript
- Generate 6 digit random number in javascript
- Uncaught TypeError: Cannot read property 'addEventListener' of undefined
- Animating numbers counting Javascript
- How to crop multiple images with cropper js
- Multidimensional array example javascript
- Javascript get data-id attribute value
- How to preview a word document in HTML using javascript
- Hide div on click outside of element in javascript/jQuery
- Concat variable with string in javascript
- How to fixed bootstrap navbar at top on scroll
- How to pass array as arguments to function in javascript
- How to validate input type file size in javascript
- How to remove duplicate values from array in javascript
- How to set href value of anchor tag in javascript
- Json stringify
- On click enter redirect to another URL with parameters in javascript
- Input type file styling
- How to display for slash as a string in javascript HTML
- How to show and hide placeholder text