Skip to content
Advertisement

How to structure a function to add a key-value pair to a javascript object

Using javascript, how would you structure a function so that the rest of the code applies? which is to add a key/value pair to an existing JS Object.

JavaScript

I am aware that I can manually add the pair using

welcomeMessages.language = "message"

But am not sure how to create a function to simplify the process

Advertisement

Answer

Try:

JavaScript

You could also add a small check to see if the message already exists, so that you don’t have duplicate entries.

JavaScript

Another way is to use Object.assign() function

JavaScript

Though you don’t necessarily have to wrap them inside a function, you can just do this instead:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement