var i = 0;
i.__proto__
Why do I see extra Object in prototype chain for Number object?
When I try to check i.__proto__.__proto__.__proto__
is null
but devtools screenshot below its of type Object.
var i = 0;
i.__proto__
Why do I see extra Object in prototype chain for Number object?
When I try to check i.__proto__.__proto__.__proto__
is null
but devtools screenshot below its of type Object.