What is the problem with the display of the JavaScript prototype chain in the browser?

function A() {

}

function B() {

}
B.prototype =  new A();
var b = new B()

Mar.28,2021

if the function does not specify a prototype, the system automatically generates one for it, the prototype is an "anonymous" empty object, and the prototype is the top-level Object object.

Menu