Skip to content

Instantly share code, notes, and snippets.

@raorao
Last active July 5, 2018 18:51
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raorao/cedb7282c80e24328421 to your computer and use it in GitHub Desktop.
Save raorao/cedb7282c80e24328421 to your computer and use it in GitHub Desktop.
valueOf hackery.
obj = (function() {
  currentValue = 7
  return {
    valueOf: function() { return currentValue = currentValue+2 }
  }
})()

(obj < 10) && (obj > 10) //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment