Skip to content

Instantly share code, notes, and snippets.

@npow
Created June 2, 2012 20:20
Show Gist options
  • Save npow/2859811 to your computer and use it in GitHub Desktop.
Save npow/2859811 to your computer and use it in GitHub Desktop.
Attribute getter
Object.defineProperty(
Object.prototype,
"2",
{
get: function() {
/* some crazy side-effect */
}
}
);
new Float64Array(1)[2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment