Update style.md

This commit is contained in:
tommyZZM
2015-12-02 16:44:36 +08:00
parent 421b8ab321
commit 94f0d4921f
-5
View File
@@ -266,11 +266,6 @@ const nodes = Array.from(foo);
// best
[1, 2, 3].map(x => x * x);
// best
[1, 2, 3].map((x,i) => {
return x * i;
});
```
箭头函数取代`Function.prototype.bind`,不应再用self/\_this/that绑定 this。