Skip to content

Instantly share code, notes, and snippets.

@aulizko
Created March 15, 2009 12:35
Show Gist options
  • Save aulizko/79403 to your computer and use it in GitHub Desktop.
Save aulizko/79403 to your computer and use it in GitHub Desktop.
Manual written if. Just for fun.
IF = {
'true' : function () {
alert('true');
},
'false' : function () {
alert('false')
}
};
IF[(5 < 4)](); // should be false
IF[(typeof window.UnusualAndStrangeProperty === 'undefined')](); // should be true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment