单项选择题

function Person(){}var p1 =new Person();console.log(p1.__proto__==Person.prototype);
以上代码执行结果为? ()

A.TRUE
B.FALSE
C.Person
D.Object