Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Last active January 4, 2016 20:29
Show Gist options
  • Save joshuakfarrar/8673923 to your computer and use it in GitHub Desktop.
Save joshuakfarrar/8673923 to your computer and use it in GitHub Desktop.
// C'mon, Axe. Get your act together. return Axe.writesBadCode(); // always returns true
// http://moffdub.files.wordpress.com/2009/01/2609_2768.jpg
var self = this;
var get = {
a: {
girlfriend: (function() { console.log('derp'); })
}
}
function Person() {
}
Person.prototype.understand = function() {
return self;
}
var you = new Person();
if (you.understand() == this)
get.a.girlfriend();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment