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
ruanyf
9e974525c1
docs(symbol): edit symbol
2016-11-25 13:12:10 +08:00
fisher.zhang
e4d1bb1a63
修正一个“类的实例对象”节 的错误:“它们的原型都是Point”
...
“类的实例对象 ”中举的例子
var p1 = new Point(2,3);
var p2 = new Point(3,2);
p1.__proto__ === p2.__proto__
//true
上面代码中,p1和p2都是Point的实例,它们的原型都是Point,所以__proto__属性是相等的。
2016-11-20 17:18:36 +08:00
ruanyf
fae89fb221
docs(class): edit class/super
2016-11-15 11:32:12 +08:00
ruanyf
4a52856283
docs(class): edit class/super
2016-11-14 20:57:12 +08:00
ruanyf
d805c055e4
docs(class): edit class/super
2016-11-14 20:47:45 +08:00
ruanyf
bd863cd40f
fix(class): edit class/super
2016-11-11 17:44:24 +08:00
Viky-zhang
56687e0dcb
即->既
2016-11-05 12:18:47 +08:00
Jon
1092e53793
.ant-menu-horizontal > li.ant-menu-item
...
ant-design 乱入,去掉貌似是css语言的内容 .ant-menu-horizontal > li.ant-menu-item
2016-09-06 23:09:59 +08:00
ruanyf
d0fd2b623e
docs(map): edit map
2016-09-04 01:38:44 +08:00
ruanyf
fe3446c157
docs(symbol): edit simbol.hasInstance
2016-08-16 15:41:37 +08:00
ruanyf
aa7f34527b
docs(class): fix typo
2016-07-23 07:32:32 +08:00
ruanyf
4c8c37c863
docs(module): edit SystemJS
2016-07-19 09:35:20 +08:00
ruanyf
fdf489eafb
docs(class): edit extends
2016-07-14 21:27:34 +08:00
xcatliu
0ad6b4eb80
Update class.md
2016-07-12 17:06:22 +08:00
ruanyf
0b22d85c74
docs(class): edit 构造函数
2016-07-10 04:14:49 +08:00
Ruan YiFeng
b299d21641
Merge pull request #215 from NumerHero/gh-pages
...
问题修改
2016-06-02 00:44:17 -05:00
Owen
251552555a
问题修改
2016-06-01 21:12:39 +08:00
Xcat Liu
96b4a4a33d
Fix coding style in docs/class.md
2016-05-18 16:19:26 +08:00
ruanyf
202f04bc43
docs: add mixin.md
2016-04-24 10:09:27 +08:00
ruanyf
9da130f1ab
docs(class): edit super 关键字的含义
2016-04-20 11:17:03 +08:00
ruanyf
d7f742af69
docs(Object): edit Object.assign
2016-04-13 07:54:12 +08:00
ruanyf
8796fc605f
fix(class): 继承Object的子类行为
2016-03-26 21:00:11 +08:00
ruanyf
834431ecee
docs(class): 完善类的静态属性
2016-02-29 18:16:12 +08:00
fjywan
070985c4a4
Update class.md
2016-01-25 15:20:34 +08:00
Ke Xu
2721216963
Update class.md
2015-12-16 17:33:06 -05:00
ruanyf
3dcf078440
edit destructuring & class
2015-11-16 21:36:29 +08:00
ruanyf
e26516f3cd
edit object
2015-11-02 07:14:00 +08:00
ruanyf
7c2ba1b038
edit object
2015-10-31 13:16:06 +08:00
ruanyf
4e1e738528
edit class
2015-10-20 13:53:06 +08:00
ruanyf
97f6f6d98e
add ES7 features
2015-09-18 08:06:09 +08:00
ruanyf
8ac0c18bd7
edit class/no static property
2015-09-17 11:49:48 +08:00
ruanyf
1b550c7627
edit let
2015-09-05 10:46:59 +08:00
ruanyf
5a5f9d8d49
fix #81
2015-08-28 18:51:35 +08:00
ruanyf
6d259c3388
edit Map
2015-08-18 09:02:16 +08:00
ruanyf
77f16ab5f7
修改 class,新增 proxy和reflect
2015-08-12 08:10:34 +08:00
ruanyf
d2ac1f0cc6
加入docs/decorator
2015-08-09 17:41:37 +08:00