Skip to content

Instantly share code, notes, and snippets.

@A
Created November 30, 2013 16:59
Show Gist options
  • Save A/7721522 to your computer and use it in GitHub Desktop.
Save A/7721522 to your computer and use it in GitHub Desktop.
// Just strange idea.
Object.prototype.__defineGetter__('length', function () {return Object.keys(this).length});
var obj = {1:1,2:2,3:3,4:4};
obj.length; // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment