ES6
奥巴犇
这个作者很懒,什么都没留下…
展开
-
ES6方法的简写a(){}等同于a:function(){}
const o = { method() { return "Hello!"; }};// 等同于const o = { method: function() { return "Hello!"; }};原创 2018-11-15 19:54:13 · 4232 阅读 · 0 评论 -
ES6之Class学习笔记
类必须使用new调用,否则会报错。这是它跟普通构造函数的一个主要区别,后者不用new也可以执行。class Foo { constructor() { return Object.create(null); }}Foo()// TypeError: Class constructor Foo cannot be invoked without 'new'construc...原创 2018-11-20 21:04:03 · 284 阅读 · 0 评论 -
Promise笔记
分析下列程序代码,得出运行结果,解释其原因Promise.resolve() .then(() => { return new Error('error!!!') }) .then((res) => { console.log('then: ', res) }) .catch((err) => { console.log('catch...原创 2018-11-27 20:27:11 · 427 阅读 · 0 评论