Skip to content

Instantly share code, notes, and snippets.

@fredrick
Created July 21, 2011 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredrick/1096488 to your computer and use it in GitHub Desktop.
Save fredrick/1096488 to your computer and use it in GitHub Desktop.
Axe JavaScript
/**
* Inspired by http://d24w6bsrhbeh9d.cloudfront.net/photo/172219_460s.jpg
*/
function Understand() {
this.this = 'loser';
}
function A() {
this.girlfriend = true;
};
function Get() {
this.a = new A();
};
var you = 'loser',
understand = new Understand(),
get = new Get();
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