标签: javascript ecmascript-5
请考虑以下代码:
function Person(a,b){ this.a = a; this.b = b; }; Object.getPrototypeOf(Person) === Person.prototype; // gives false
他们不应该平等吗?