Are all the prototypes of ordinary objects in node empty?

let obj = {a:2,b:4}
console.log(obj.__proto__)
console.dir(Object.getPrototypeOf(obj))

node{}Object.prototype
Apr.24,2021

node just didn't type out the inenumerable ones


there is no difference. If there is no actual content in the object, the node will not be displayed.

Menu