Number.prototype
所有 Number
实例都继承自 Number.prototype
Number.prototype.add = function(x) {
return this + x;
}
Number.prototype.minus = function(x) {
return this - x;
}
console.log((3).add(2).minus(1)); // 4
所有 Number
实例都继承自 Number.prototype
Number.prototype.add = function(x) {
return this + x;
}
Number.prototype.minus = function(x) {
return this - x;
}
console.log((3).add(2).minus(1)); // 4
本文标题:实现(3).add(2).minus(1)
本文链接:https://www.haomeiwen.com/subject/oxcoiktx.html
网友评论