Answers for "javascript loop throug dictionary"

3

iterate dict in javascript

'use strict';

const object = {'a': 1, 'b': 2, 'c' : 3};

for (const [key, value] of Object.entries(object)) {
  console.log(key, value);
}
Posted by: Guest on June-10-2021
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 "Javascript"

Browse Popular Code Answers by Language