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

130 Commits

Author SHA1 Message Date
ruanyf
a342ebff14 docs(class): fix private field #1159 2023-07-13 16:27:54 +08:00
ruanyf
7dbca2b4bd docs(class): edit text 2023-06-27 15:03:55 +08:00
ruanyf
ef5e3a2ea3 docs(class): fix typo 2022-10-18 21:11:54 +08:00
ruanyf
36b55b9ec9 docs(class): 静态块 2022-09-21 15:28:20 +08:00
1a8f46c628
docs(class): fix typo 2022-09-20 21:39:05 +08:00
CondorHero
5730890e86
fix: line feed causes HTML rendering error view 2022-09-01 14:45:02 +08:00
ruanyf
4c0201cf2f docs(class): fixed #1125 private class field 2022-07-13 15:25:57 +08:00
ruanyf
6880b36897 docs(class): fix typo 2022-06-25 21:59:29 +08:00
ruanyf
a837d8f2ce docs: update ES2022 2022-06-25 21:25:13 +08:00
ruanyf
664f6850f7 docs(class): fixed #1099 2021-12-03 01:46:25 +08:00
ruanyf
47dec55486 docs(class): 加入 static block 2021-09-02 08:29:12 +08:00
ruanyf
4ead6a067f docs(class): fix typo #1065 2021-07-28 01:32:44 +08:00
ruanyf
89370afc1c docs(class): 添加 in 运算符 2021-05-24 19:06:00 +08:00
daungui
53cb4d3ef8 docs: 修正已知的 this 术语错误 2021-05-16 00:39:45 +08:00
ruanyf
d04189323a docs(class): edit class intro 2020-12-09 13:10:24 +08:00
ruanyf
04dddb2d7c docs: fix wangdoc-es6 #4 2020-11-01 01:33:11 +08:00
ruanyf
6ff7cb8a2f docs(class): fix private property 2020-09-17 14:18:50 +08:00
ruanyf
57701fcc2e docs(class): fix typo 2020-02-27 11:37:31 +08:00
ruanyf
10338972d5 docs(class): fix #906 2019-09-14 17:37:20 +08:00
ruanyf
67eee047ee docs(class): edit arrow function'this 2019-03-27 06:49:40 +08:00
ruanyf
feeb592181 docs(class): fix new.target #819 2019-02-19 16:19:46 +08:00
ruanyf
2fd150610f docs(class): fix class 表达式 #818 2019-02-18 22:34:15 +08:00
ruanyf
2e97d01e0f docs(class): fix this #813 2019-02-18 22:19:04 +08:00
iNE
83af4043f0
super(length, length) => super(length, width); 2019-02-11 19:02:35 +08:00
grain先森
a2d306cbc9
Update class.md
修改错别字
2019-01-31 17:29:03 +08:00
ruanyf
46981f6b9a docs(class): edit 私有属性 2019-01-21 00:41:13 +08:00
ruanyf
78caba3a83 docs(class): fix 实例属性的新写法 #792 2019-01-14 22:35:27 +08:00
ruanyf
d88f89e6b6 docs(class): edit 实例属性的新写法 2018-12-17 00:05:35 +08:00
ruanyf
5eaed7109e docs(class): edit 实例属性的新写法 2018-12-17 00:02:56 +08:00
ruanyf
963008d7c9 docs(class): 重新调整结构 2018-12-16 23:15:31 +08:00
ruanyf
283b571650 docs(class): edit 私有属性 2018-08-31 17:51:19 +08:00
ruanyf
165d5e0c19 docs(class): edit class private property 2018-05-03 16:02:42 +08:00
ruanyf
3eeb90b85c docs(class): edit private method #572 2018-01-02 17:29:38 +08:00
Ika
e8fdb00040 docs: consistent style 2017-11-12 18:01:54 +08:00
ruanyf
70efc5d7d6 docs(set): edit set/forEach 2017-10-11 13:07:23 +08:00
Sutra Zhou
465f7bd84d 删除多余的“的”。 2017-08-25 14:41:15 +08:00
ruanyf
2eb11d7026 docs(class): edit class 2017-08-17 20:10:28 +08:00
John Hou
c0d339acfb Update class.md
[UPDATE] 增加 __proto__ 属性的提醒说明
2017-06-19 22:51:31 +08:00
John Hou
910e94afc7 Update class.md
[UPDATE] 增加对 ‘__proto__’ 属性的说明;
2017-06-19 22:45:06 +08:00
ruanyf
3f7ad4cf12 docs(class): edit class 2017-06-10 16:54:36 +08:00
ruanyf
165ba46cea docs: add class-extends 2017-06-07 09:22:06 +08:00
ruanyf
3347915274 docs(class): edit class 2017-05-28 10:29:23 +08:00
Tse-Hsien Chiang
ab97819508 Fix typo
修正錯字:Funciton.prototype -> Function.prototype
2017-05-11 17:10:53 +08:00
ruanyf
e3cf5bd225 docs(class): edit class/super 2017-03-28 20:22:04 +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
1fa35d5c7b docs(class): 调整”类的私有属性“一节的位置 2017-01-17 16:09:32 +08:00
ruanyf
8d0274cd13 docs(class): 私有属性 2017-01-14 15:04:55 +08:00
ruanyf
7f0b3fe2f0 docs(object): edit Object.value() 2016-12-13 19:22:09 +08:00
ruanyf
e9fbf72aac docs(class): edit class/super 2016-12-07 20:08:53 +08:00
ruanyf
d6d9ab4ae3 Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-11-25 13:12:25 +08:00