abstract operation ToPrimitive takes an input argument and an optional argument PreferredType. The abstract operation ToPrimitive converts its input argument to a non-Object type. If an object is capable of converting to more than one primitive type, it may use the optional hint PreferredType to favour that type. Conversion occurs according to the following algorithm: 1. Assert: input is an ECMAScript language value. 2. If Type(input) is Object, then a. If PreferredType was not passed, let hint be "default". b. Else if PreferredType is hint String, let hint be "string". c. Else PreferredType is hint Number, let hint be "number". 7.1.1 ToPrimitive ( input [ , PreferredType ] ) d. Let exoticToPrim be ? GetMethod(input, @@toPrimitive). e. If exoticToPrim is not unde ined, then i. Let result be ? Call(exoticToPrim, input, « hint »). ii. If Type(result) is not Object, return result. iii. Throw a TypeError exception. f. If hint is "default", set hint to "number". g. Return ? OrdinaryToPrimitive(input, hint). 3. Return input. NOTE When ToPrimitive is called with no hint, then it generally behaves as if the hint were