Brendan Eich (2014-01-15T21:05:37.000Z)
domenic at domenicdenicola.com (2014-01-22T20:40:28.533Z)
``` js> 0L == { valueOf: function() { return 0 } } typein:2:0 TypeError: no operator function found for == ``` > Is the Object-type operand converted to a primitive before the > overload is matched? No, the multimethod dispatch algorithm runs. Even with ToObject (I see I left that out), there is no predefined @@ADD or @@ADD_R on Object.prototype, so the error above is inevitable.