Skip to content

Instantly share code, notes, and snippets.

@polotek
Created September 5, 2010 18:35
Show Gist options
  • Save polotek/566228 to your computer and use it in GitHub Desktop.
Save polotek/566228 to your computer and use it in GitHub Desktop.
var b = {};
b.valueOf = function() { return 'foo'; }
b.valueOf(); // 'foo'
b == 'foo' // true
valueOf(b); // '{}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment