1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 10:22:23 +00:00

133 Commits

Author SHA1 Message Date
Chen Fengyuan
7d266f0ce7 docs: fix typos 2019-01-23 15:06:56 +08:00
ruanyf
7791c64d30 docs(array): edit spread 2019-01-08 22:17:08 +08:00
ruanyf
52bca44c4c docs(object): edit spread operator 2018-12-26 11:33:44 +08:00
ruanyf
6a10936d64 docs(object): edit 扩展运算符 2018-11-10 17:59:52 +08:00
ruanyf
a0dab18d36 docs: object 一章拆分 2018-11-10 11:36:10 +08:00
snow212-cn
6583714f3b
Update object.md
这两段不知所云的英文插进代码段要干什么
2018-06-07 22:34:19 +08:00
taxilng
4f5db47055
Update object.md
__proto__属性:第一个例子,注释,ES5,ES6写反了
2018-05-22 14:30:21 +08:00
ruanyf
592ab333d8 docs(object): fix object spread #630 2018-03-25 20:38:17 +08:00
王福宗
3d8af6149c
给当前对象加上同名属于,形成对比
给当前对象加上同名属于,由于值不同,会有更直观的对比~
同时,也和最后一个例子有呼应,方便初学者理解
2018-03-03 20:35:02 +08:00
ruanyf
14c45fe2f5 doc: update to ES2018 2018-01-29 08:47:04 +08:00
Jing Ma
7dd83344b6
Updated result of examples 2017-11-22 11:50:53 +08:00
Ika
e8fdb00040 docs: consistent style 2017-11-12 18:01:54 +08:00
ruanyf
ce5de76c40 docs(object): edit object'clone 2017-11-01 16:26:36 +08:00
ruanyf
f6c7ded8da docs(object): add object spread #517 2017-10-11 12:19:43 +08:00
ruanyf
a782099ff2 docs(object): edit object/super 2017-10-09 11:52:51 +08:00
ruanyf
55dc77e01d docs(object): edit object/Object.assign 2017-10-08 13:47:40 +08:00
waiting
7b2b8f1e46 docs: use let/const instead of var 2017-09-24 17:14:17 +08:00
ruanyf
fb2930d272 refactor(object): edit object/enumerable 2017-08-14 11:27:05 +08:00
ruanyf
2fe1490d27 docs(object): edit object 2017-07-30 10:11:00 +08:00
ruanyf
e35fcfda61 docs(asyce): edit async Generator 2017-07-02 17:15:38 +08:00
ruanyf
8c8be74712 docs(array): move spread operator into array chapter 2017-07-02 09:37:23 +08:00
ruanyf
4019d9d01c docs: edit Object 2017-06-04 12:47:03 +08:00
ruanyf
d0865f0773 docs: edit Object 2017-06-04 12:42:27 +08:00
Ruan YiFeng
595ea3f68c Merge pull request #385 from jacty/patch-7
typo
2017-04-26 08:29:59 +08:00
Ruan YiFeng
7b7ab6ff28 Merge pull request #384 from jacty/patch-6
typo
2017-04-26 08:27:03 +08:00
Jacty
34f321ec99 typo
typo
2017-04-25 21:30:00 +08:00
Jacty
fd9f4d6d00 typo
typo
2017-04-25 20:53:21 +08:00
Jacty
e06759e7ef 这里应该是说浅拷贝吧?
这里应该是说浅拷贝吧?前文说过Object.assign()是浅拷贝呀~
2017-04-25 20:51:59 +08:00
ruanyf
b2182920bb docs(symbol): edit symbol 2017-04-21 13:58:23 +08:00
ruanyf
15b962627e docs(object): edit object 2017-04-19 20:16:24 +08:00
刘健超
b8959b2e6d Update object.md
错别字:“预算”->“运算”
2017-03-28 19:34:01 +08:00
ruanyf
fee336618b docs(object): edit Object.setPrototypeOf & Object.getPrototypeOf 2017-03-04 11:04:48 +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
2b9fe071df docs(object): edit spread operator 2017-02-09 13:55:23 +08:00
ruanyf
f66e7cb391 docs(let): edit let 2017-02-07 11:38:45 +08:00
ruanyf
6e944000df docs(async): 拆分 generator 函数的异步操作与 async 函数 2017-02-03 01:44:26 +08:00
ruanyf
4bf719ef8f docs(module): add Node 加载 ES6 模块 2017-02-02 08:54:35 +08:00
Ruan YiFeng
4d599e8785 docs(Object): edit Object.values() 2017-01-27 09:51:02 +08:00
goodyboy6
20a5e6b182 Update object.md
const descriptor = Object.getOwnPropertyDescriptor(o, 'foo');
==>
const descriptor = Object.getOwnPropertyDescriptor(obj, 'foo');
2017-01-09 15:41:07 +08:00
Yang KeAn
0b247a9ea2 9.对象的扩展 方法的name属性部分需修改
http://es6.ruanyifeng.com/#docs/object#方法的-name-属性 中,“console.log(this.name)” 不应该出现,这里的“this”指代的是方法所处的对象,即 person,该对象并不存在 name 属性,与本节所讲方法的属性毫无关系,易引起误导,应修改。
2017-01-08 10:52:44 +08:00
ruanyf
e1abf373a3 docs(object): edit object 2017-01-07 13:31:27 +08:00
ruanyf
496e286eeb fix: restore object.md 2016-12-23 10:13:10 +08:00
王宁
09a72af364 Update and rename object.md to object2.md
处理数组 这里写反了
2016-12-21 14:52:33 +08:00
ruanyf
7f0b3fe2f0 docs(object): edit Object.value() 2016-12-13 19:22:09 +08:00
ruanyf
9e974525c1 docs(symbol): edit symbol 2016-11-25 13:12:10 +08:00
Michael-Lyu
f8e8242827 修改"属性的简洁表示法"描述 2016-11-12 20:59:29 +08:00
ruanyf
96b6c5a3fd docs(regex): add Unicode property class 2016-10-03 22:46:08 +08:00
ruanyf
1cd457d5cf docs(object): fix object 2016-09-28 19:33:55 +08:00