Skip to content

Instantly share code, notes, and snippets.

@snichme
Created September 18, 2014 18:28
Show Gist options
  • Select an option

  • Save snichme/726a796e982dd3a5d490 to your computer and use it in GitHub Desktop.

Select an option

Save snichme/726a796e982dd3a5d490 to your computer and use it in GitHub Desktop.
Impossible js
var a = {
v: false,
valueOf: function() {
return this.v = !this.v;
}
};
if(a == true && a == false) {
console.log('Impossible!!');
} else {
console.log('That is more like it!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment