Author -  Sai gowtham

Adding the key-value pairs to the Object in JavaScript

In this tutorial, we are going to learn about how to add a key/value pairs to an existing object in JavaScript.

Consider we have an object with two key-value pairs.

const user = {name: "gowtham", active: true}

To add a third key-value pair to an above object, we can do it in two different ways in JavaScript.

First way: Using dot notation

user.year = 2020;

In the above code, we have added third key-value pair to a user object by using the dot notation where year is key and 2020 is value.

Second way: Bracket notation

In the bracket notation, we need to pass key as a string like object['year'] instead of just the identifier name object[year].

user['year'] = 2020;

Note: The key is also called object property.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY