JSFiddle - React, Tailwind, and code Playground
by Guddu Kumar
JavaScript
const test = {a: 1, aq: 1, b: 2, c: 3};
for (const [key, value] of Object.entries(test)) {
console.log(key, value);
}
by Guddu Kumar
const test = {a: 1, aq: 1, b: 2, c: 3};
for (const [key, value] of Object.entries(test)) {
console.log(key, value);
}