我在胡闹,想像这样在 Object 类中添加一个方法:
Object.prototype.is = function(operand) {
return this === operand;
};
10.is(10); // returns false
我对结果有点恼火,有人能提供一些见解吗?
我在胡闹,想像这样在 Object 类中添加一个方法:
Object.prototype.is = function(operand) {
return this === operand;
};
10.is(10); // returns false
我对结果有点恼火,有人能提供一些见解吗?