Answers for "create dictionary in javascript through loop"

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
3

loop dictionary with key and value javascript

const object = {'a': 1, 'b': 2, 'c' : 3};
for (const [key, value] of Object.entries(object)) {
  console.log(key, value);
}
Posted by: Guest on April-07-2020

Code answers related to "create dictionary in javascript through loop"

Code answers related to "Javascript"

Browse Popular Code Answers by Language