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

736 Commits

Author SHA1 Message Date
ruanyf
04f582da78 docs(proxy): edit proxy 2016-12-24 20:56:36 +08:00
ruanyf
c7d9c5d138 docs: add new chapter of Reflect 2016-12-24 11:53:18 +08:00
ruanyf
496e286eeb fix: restore object.md 2016-12-23 10:13:10 +08:00
Ruan YiFeng
254447ad59 Merge pull request #298 from johnjackson/patch-1
处理数组 这里写反了
2016-12-22 12:34:22 +08:00
ruanyf
192928dc42 docs(let): edit let 2016-12-21 14:54:20 +08:00
王宁
09a72af364 Update and rename object.md to object2.md
处理数组 这里写反了
2016-12-21 14:52:33 +08:00
ruanyf
67f9495d64 Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-12-20 17:40:21 +08:00
ruanyf
0d21c136c5 docs: edit Symbol 2016-12-20 17:39:34 +08:00
hyjiacan
a6ece9cfa3 Update module.md
拼写错误
2016-12-20 09:03:01 +08:00
ruanyf
329edc0711 docs(reflect): edit Reflect API 2016-12-19 23:13:30 +08:00
ruanyf
aab07bdbc8 docs(set): edit set 2016-12-15 15:24:30 +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
51f3119ef6 docs(module): edit module 2016-12-06 12:56:38 +08:00
ruanyf
c9df99c2f7 docs(module): edit module 2016-12-06 12:47:50 +08:00
ruanyf
e26aa6be60 docs(module): edit module 2016-12-05 23:02:53 +08:00
ruanyf
166d092f23 docs(module): edit module 2016-12-05 22:45:42 +08:00
ruanyf
50e2648405 docs(module): edit module 2016-12-05 22:43:42 +08:00
ruanyf
fd079ccda1 docs(let): edit let 2016-12-04 10:26:11 +08:00
ruanyf
aee75c1ef3 Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-12-04 10:23:57 +08:00
ruanyf
28050a9db7 docs(modual): add import() 2016-12-04 10:09:20 +08:00
xhlwill
eba11dd8c7 fix: IIFE 不一定是匿名
(function a() {
  console.log('aaa');
}());
2016-12-04 02:49:08 +08:00
ruanyf
366c4ddfb5 docs(string): edit string 2016-12-03 09:43:14 +08:00
Sandon
dc44575205 change 'charCodeAt' to 'codePointAt'
I think maybe it is a clerical error.  Maybe  'codePointAt' is the word you want to write, because it is more reasonable according to the context.
2016-12-03 07:50:06 +08:00
ruanyf
cee05208e9 docs(regex): add s flag 2016-12-02 13:18:47 +08:00
ruanyf
bd2d951f45 docs(let): edit block scope 2016-12-01 16:06:35 +08:00
ruanyf
8d8db4e667 Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-12-01 15:59:25 +08:00
ruanyf
fd666def3c docs(let): add do expression 2016-12-01 15:59:18 +08:00
Jacty
312ec74699 typo mistake
a typo mistake
2016-12-01 10:34:33 +08:00
ruanyf
e5b32087c9 docs(promise): add Promise.try() 2016-11-30 11:39:40 +08:00
ruanyf
ff35ad8399 docs(proxy): add proxy 实现观察者模式 2016-11-28 14:38:58 +08:00
ruanyf
ba0744a7a4 docs(proxy): edit proxy 2016-11-27 23:28:35 +08:00
ruanyf
95f8979eb7 docs(iterator): edit for...of 2016-11-27 13:48:57 +08:00
ruanyf
60dabd27ee Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-11-26 23:09:13 +08:00
ruanyf
c1b6c6fc55 docs(map): edit weakMap 2016-11-26 23:08:38 +08:00
superxp1412
1ec87bd9a5 Update async.md 2016-11-26 12:22:49 +08:00
ruanyf
ff43701be0 docs(proxy): edit proxy 2016-11-25 13:29:25 +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
Ruan YiFeng
693fb27fed Merge pull request #284 from ifishing/gh-pages
修正一个“类的实例对象”节 的错误:“它们的原型都是Point”
2016-11-24 16:05:13 +08:00
ruanyf
d9b5278347 Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-11-23 17:16:14 +08:00
ruanyf
26b718b4b5 docs(fp): edit fp/currying 2016-11-23 17:15:39 +08:00
秦世成
8e09ab14f5 Update symbol.md
移除多余的Markdown语句
2016-11-20 23:15:02 +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
1160713159 Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages 2016-11-14 20:47:58 +08:00
ruanyf
d805c055e4 docs(class): edit class/super 2016-11-14 20:47:45 +08:00
Ruan YiFeng
19bb7ad9de Merge pull request #277 from LcpMarvel/change_description_about_shorthand_properties
修改"属性的简洁表示法"描述
2016-11-12 16:33:25 -06:00
Michael-Lyu
f8e8242827 修改"属性的简洁表示法"描述 2016-11-12 20:59:29 +08:00