(3).constructor is Number, but "constructor" in (3) is TypeError, why?
|
| ||||
|
feedback
|
|
With using the property accessor, the number But as ChaosPandion already pointed out, the | |||
|
feedback
|
|
The specification for the 11.8.7 The in operator The production RelationalExpression : RelationalExpression in ShiftExpression is evaluated as follows:
The reason | |||||||
feedback
|
((3).constructor)returns the Number function, while the expression("constructor" in (3))throws a TypeError. The point being that 3 acts like an object, so the fact that it doesn't work withinis confusing. – cHao Nov 4 '10 at 14:12