nitishk72
nitishk72

Reputation: 1746

How to add key value-pair to a Object?

I want to update my Object by adding a more key-value pair.

Object options = {
  "first_name": "Nitish",
  "last_name" : "Singh"
}

after initializing the Object I want to add one more key and value. Is there any way to do this.

after adding one more key-value pair my object will look like this

options = {
  "first_name" : "Nitish",
  "last_name"  : "Singh"
  "middle_name": "Kumar"
}

Upvotes: 7

Views: 15610

Answers (1)

Günter Zöchbauer
Günter Zöchbauer

Reputation: 657446

You can assign to a Map using the indexing operator

options['middle_name'] = 'Kumar';

{} is a Map literal to create a Map instance. The result allows you to use all methods of Map like remove

Upvotes: 7

Related Questions