© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Ibrahim Tanyalcin
{intrst:"Scnc&Art",msc:"admin@MutaFrame",strive:"Experiment&Learn",loves:"ES5",hates:"bandwagon",lang:"Javascript",twttr:"@ibrhmTanyalcin"}
Object.keys?
var x = {a:1,b:2}; Object.keys(x);//["a","b"]
watch out, this will only list the enumerable properties (perhaps what you want), not from the prototype or methods/properties with a descriptor with enumerable:false.
DK
Thank you. I can work with the list. :)