Quiz Challenges
100
Question 90 of 100
90%
90
What gets logged by these two lines, in order?
Copy
const
obj
=
{
}
;
console
.
log
(
obj
.
prototype
)
;
console
.
log
(
obj
.
__proto__
)
;
A
TypeError, then Object.prototype
B
undefined, then undefined
C
undefined, then Object.prototype
D
Object.prototype, then Object.prototype
Submit Answer
Previous
90
/
100
Next