Проходя через все атрибуты объекта JavaScript

let a = {x: 200, y: 1}
let attributes = Object.keys(a)
console.log(attributes)
//output: ["x", "y"]
Excited Eel