JSFiddle - React, Tailwind, and code Playground
by wisegorilla
JavaScript
const object1 = {
a: 'somestring',
b: 42
};
for (const [key, value] of Object.entries(object1)) {
console.log(`${key}: ${value}`);
}
console.log(Object.entries(object1));
// expected output:
// "a: somestring"
// "b: 42"