安装
1
2
3
4
5
6
7
function incrementX(obj) { return 1 + obj.x; } incrementX({x: 42});
8.1
8.2
8.3
9
10
11