Answers for "for key value in dict javascript"

8

javascript for loop over dictionary

var dict = {'a': 1, 'b': 2, 'c' : 3}; 
for([key, val] of Object.entries(dic)) {
  console.log(key, val);
}
Posted by: Guest on September-06-2020
17

dictionary in javascript

// Dictionaries are placed in braces, and values are seperated with a comma
let myDictionary = {
	"value 1": "string",
  	"value 2": 2,
	"value 3": ["array value 1", "array value 2"]
};

// Access the dictionary using its keys
var value1 = myDictionary["value1"]; // Type: String
var value2 = myDictionary["value2"]; // Type: Int
var value3 = myDictionary["value3"]; // Type: Array
Posted by: Guest on October-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language