Skip to content

Instantly share code, notes, and snippets.

@phiggins42
Created September 16, 2010 16:25
Show Gist options
  • Save phiggins42/582705 to your computer and use it in GitHub Desktop.
Save phiggins42/582705 to your computer and use it in GitHub Desktop.
(function(){
var foo = {
count: 0,
bar: function(it){
this.count++;
}
};
var bar = "bar";
foo['bar']("baz");
foo.bar("baz");
foo[bar]("baz");
if(foo.count !== 3){
alert('if this is true, the universe imploded');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment