单项选择题
function Person(){}var p1 =new Person();console.log(p1.__proto__==Person.prototype);以上代码执行结果为? ()
A.TRUEB.FALSEC.PersonD.Object
单项选择题 ['a', 'b', 'c'].fill(7)的返回结果是 ()
单项选择题 function Foo(){getName =function(){alert(1)};return this;},其中this指向()
单项选择题 function fn(){ var name = "bawei"; alert(this); alert(this.name)}fn();正确的弹出结果是()