Contact: aviboots(AT)netvision.net.il
41,215 questions
53,717 answers
573 users
let person = { name: "John", age: 46, city: "New York" }; const firstKey = Object.keys(person).sort()[0]; console.log(firstKey); /* run: age */