ruanyf
60657db152
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-04-06 17:45:19 +08:00
ruanyf
ea23aa7291
docs(generator): edit generator-async
2017-04-06 17:45:05 +08:00
请叫我王磊同学(Wanglei)
87c0669a0b
update generator-async.md
...
‘next法返回值的value属性’改为‘next返回值的value属性’
2017-04-01 17:17:44 +08:00
ruanyf
f29bae250d
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-03-29 14:54:32 +08:00
ruanyf
7e2b0c709f
docs(number): edit number
2017-03-29 14:53:21 +08:00
Toxichl
cd360410cf
The position of the asterisk is incorrect
...
Combined with the previous content:
```
由于Generator函数仍然是普通函数,所以一般的写法是上面的第三种,即星号紧跟在`function`关键字后面。**本书也采用这种写法**。
```
so, the position of the asterisk is incorrect ...
2017-03-29 14:46:42 +08:00
Ruan YiFeng
0c20540bdb
Merge pull request #359 from JChehe/patch-1
...
Update object.md——错别字:“预算”->“运算”
2017-03-29 14:09:33 +08:00
ruanyf
ccefd899e5
docs(reflect): edit Reflect.apply
2017-03-29 13:41:41 +08:00
ruanyf
e3cf5bd225
docs(class): edit class/super
2017-03-28 20:22:04 +08:00
ruanyf
d51beedbd6
docs: edit number.isFinite
2017-03-28 19:46:30 +08:00
刘健超
b8959b2e6d
Update object.md
...
错别字:“预算”->“运算”
2017-03-28 19:34:01 +08:00
Arvin.He
0fb4fcd941
Update number.md
...
"而这两个新方法只对数值有效,非数值一律返回false。" ,这句话对我来说有误导倾向.并非抠字眼,遇到了就顺便提出了.
2017-03-28 11:38:31 +08:00
ruanyf
3619d2121c
docs(proxy): edit proxy
2017-03-27 12:45:33 +08:00
ruanyf
5a34395c74
docs(intro): edit intro/babel
2017-03-27 07:09:55 +08:00
Willin Wang
2c4d545dcc
更新 async
...
这里不需要 `async` 去掉更容易理解其原理。
2017-03-23 11:31:50 +08:00
duzeng
f56ab65469
docs(promise): edit promise.md
...
就算改变已经发生了,你再对`Promise`对象添加回调函数--------->如果改变已经发生了,就算你再对`Promise`对象添加回调函数
貌似这样更能表达原意。
2017-03-18 00:23:12 +08:00
JeremyFan
e4c267e217
typo fix
2017-03-16 15:00:49 +08:00
ruanyf
5ad3802d84
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-03-16 14:52:49 +08:00
ruanyf
cc2e6cac36
docs(promise): edit promise
2017-03-16 14:50:54 +08:00
Longfei Wu
d56b6eadf9
fix typo: proxy instead of handler
...
when handler is empty, proxy (instead of handler) should be equal to target
2017-03-14 19:02:52 +08:00
ruanyf
9ecf067ddf
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-03-14 13:48:18 +08:00
ruanyf
012826a478
docs(string): edit string
2017-03-14 13:48:00 +08:00
sikaco
57fe8c62fc
修改let.md中不够具体的文字表述,修改示例代码使其更精确
2017-03-08 19:15:21 +08:00
ruanyf
05b41ce255
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-03-06 17:25:55 +08:00
ruanyf
d0baadb677
docs(let): edit block scope
2017-03-06 17:25:07 +08:00
AnHongpeng
a671890001
fix: 删除多余的一层else
2017-03-04 23:15:00 +08:00
ruanyf
1a4f622d92
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-03-04 11:05:18 +08:00
ruanyf
fee336618b
docs(object): edit Object.setPrototypeOf & Object.getPrototypeOf
2017-03-04 11:04:48 +08:00
prettykernel
3136117acc
typo fix
2017-02-28 20:27:36 +08:00
ruanyf
4d06e3681d
docs(object): add object.assign
2017-02-28 17:45:38 +08:00
ruanyf
6496d019b7
docs(object): add object.assign
2017-02-28 17:42:14 +08:00
ruanyf
b96a3fd1d9
docs(object): add object.assign
2017-02-28 17:39:26 +08:00
ruanyf
feaca88fc0
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-02-26 23:15:34 +08:00
ruanyf
938c0cb461
docs(generator): edit yield
2017-02-26 21:46:18 +08:00
KurryLuo
d6cf4631eb
Update destructuring.md
...
我的陋解:析构赋值等号右边如果是数组的话,就不用转换成对象。按照数组的规则赋值就可以了。请指正。
2017-02-26 10:53:59 +08:00
ruanyf
c108637656
docs(let): edit const
2017-02-24 21:53:41 +08:00
ruanyf
f51f862dc2
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2017-02-24 21:38:51 +08:00
ruanyf
9bb12ab3d2
docs(let): edit const
2017-02-24 21:38:18 +08:00
Wang Lei
9f4ca94152
修复类的静态属性中实例代码的错误
...
class MyClass {
static myStaticProp = 42;
constructor() {
console.log(MyClass.myProp); // 42
}
}
修改为:
class MyClass {
static myStaticProp = 42;
constructor() {
console.log(MyClass.myStaticProp); // 42
}
}
2017-02-23 08:46:13 +08:00
ruanyf
002618ac5e
docs(promise): fix typo
2017-02-19 21:00:37 +08:00
ruanyf
8ab3b0ac12
docs(object): edit object/for...of
2017-02-17 13:32:26 +08:00
ruanyf
08e0824e21
docs(generator-async): edit co module
2017-02-16 16:52:56 +08:00
ruanyf
2da8eac664
docs(module): edit import()
2017-02-14 07:32:28 +08:00
ruanyf
e5c9ccadca
docs(module): edit Module
2017-02-13 11:32:56 +08:00
ruanyf
c4ee209c88
docs(module): edit Module
2017-02-13 00:30:49 +08:00
ruanyf
9ed5c759e9
docs(module): 拆分《Module》一章
2017-02-13 00:25:47 +08:00
ruanyf
002dddabf9
docs(async): edit async
2017-02-12 14:39:14 +08:00
ruanyf
2b9fe071df
docs(object): edit spread operator
2017-02-09 13:55:23 +08:00
ruanyf
d042de53e6
docs(let): edit 块级作用域内的函数声明
2017-02-08 19:22:44 +08:00
ruanyf
e8db4536b8
docs(let): edit 块级作用域内的函数声明
2017-02-08 19:19:56 +08:00