Skip to content

Instantly share code, notes, and snippets.

@mjbradford89
Created May 23, 2014 20:03
Show Gist options
  • Save mjbradford89/feaaa4bdb3c94ba50226 to your computer and use it in GitHub Desktop.
Save mjbradford89/feaaa4bdb3c94ba50226 to your computer and use it in GitHub Desktop.
var obj = AUI().Component.create( {
prototype: {
bind: function() {
return function(x) { return x + 1; }
}
}
});
var x = obj.bind();
x(1); // Errors, I would expect it to return 2?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment