Skip to content

Instantly share code, notes, and snippets.

@industral
Created December 12, 2014 13:34
Show Gist options
  • Save industral/348a17563435a030e798 to your computer and use it in GitHub Desktop.
Save industral/348a17563435a030e798 to your computer and use it in GitHub Desktop.
Object size
var o = {x: 1}
Object.defineProperty(o, "length", { get: function () { return Object.keys(this).length; } });
o.length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment