let obj = { 1: "One", 102: "One hundred and two", 25: "Twenty five", 64: "Sixty four" } console.log(Object.keys(obj)); //Result: //(4) ['1', '25', '64', '102']
let obj = { 1: "One", 102: "One hundred and two", 25: "Twenty five", 64: "Sixty four" } console.log(Object.keys(obj)); //Result: //(4) ['1', '25', '64', '102']