wie man Wert und Schlüssel in einem für Schleife in JS bekommt
const test = {a: 1, b: 2, c: 3};
for (const [key, value] of Object.entries(test)) {
console.log(key, value);
}
Emmanuel Mahuni