JavaScript学习笔记之 强大的表达力
自定义方法
1 | Number.prototype.add = function(x) { |
链式运算
1 | Number.prototype.subtract = function(x) { |
去掉圆括号
将(8).double().square()—>(8).double.suqare
ES5规定,每个对象的属性都有一个取值方法get,用来自定义该属性的读取操作。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17Number.prototype = Object.defineProperty(
Number.prototype, "double", {
get: function() {
return (this + this)
}
}
);
Number.prototype = Object.defineProperty(
Number.prototype, "square", {
get: function() {
return (this * this)
}
}
);
console.log((8).double); //16
console.log((8).double.square); //256
console.log(8["double"]["square"]); //256
此文章原文来自:
阮一峰 JavaScript 有多灵活