Is there any expression where by an object\'s toString method is implicitly called overriding its valueOf method?
In the examples below, valueOf is alw
Is there any expression where by an object's toString method is implicitly called overriding its valueOf method?
Yes, that does happen whenever the abstract ToString operation is applied on an object, using the DefaultValue procedure with .toString() before .valueOf().
However, in your examples you have only used the addition operator which is like an exception from the standard behaviour. Since it does not only concatenate strings, but also sums numbers, it always uses valueOf on both operands before checking whether they're strings. See the note 1:
No hint is provided in the calls to ToPrimitive in steps 5 and 6. All native ECMAScript objects except Date objects handle the absence of a hint as if the hint Number were given; Date objects handle the absence of a hint as if the hint String were given. Host objects may handle the absence of a hint in some other manner.
So which operations do implicitly use the ToString instead of a hint-less ToPrimitive? Here are a few examples:
in operator, bracket notation, Object.getOwnPropertyDescriptor, Object.defineProperty, hasOwnProperty, …parseInt, parseFloat, encodeURI[Component], decodeURI[Component], [un]escape, Array::join, String::[last]indexOf, RegExp::execFunction constructorArray::sort algorithm's default compare functionString constructor and String methods when casting the this object to a stringRegExp constructorError constructorsalert, XMlHTTPRequest::open, querySelector, …