Poniżej kilka przykładów jak dobrać się do obiektów 🙂
var codes = {
reset: [0, 0],
bold: [1, 22]
};
Object.keys(codes).forEach(function (key) {
console.log(key); // "reset", "bold"
});
Object.values(codes).forEach(function (key) {
console.log(key); // [0,0] [1,22]
});
Object.entries(codes).forEach(function (key) {
console.log(key); // ["reset", [0, 0]] ["bold", [1, 22]]
});