I have read that when we compare object with a number type-coercion happens. ToPrimitive on object gets called which then calls valueOf and if required toString. But I not able to get my head around how its actually working in the code given below
[ null ] == 0 // true
[ undefined ] == 0 // true
[ ] == 0 // true
[ "-0" ] == 0 // true
[ false ] == 0 // false
[ true ] == 0 // false
How is [ false ] == 0 is false but [ null ] , [ undefined ] is true
Because calling
Number([false])
, which results inNumber('false')
, returnsNaN
, whereas''
(empty or only white-space),null
andundefined
initialize aNumber
as0
. TheNumber
wrapper returns a primitive value.As Touffy noted in the comments, before calling the wrapper, the array needs to be resolved by calling
toString
on the value. Once the string value is determined, the wrapper handles the parsing.Both
null
andundefined
are valid arguments for producing aNumber
primitive, because they are the absence of a value. Blank or empty strings are also considered empty values. Since the string value of'false'
andfalse
(boolean) values are non-empty and not numeric, you will getNaN
.Note: This is slightly different from how integer parsing works.
You can check out
string_number_conversions_internal.h
over at the Chromium Code Search to see how parsing works for strings.