//对象 { //简洁表示法 let o = 1; let k = 2; let es5 = { o:o, k:k }; let es6 = { o, k }; console.log(es5); console.log(es6); let es5_method={ hello:function(){ console.log('hello') } } let es6_method={ hello(){ console.log('es6 hello') } } es5_method.hello()…
ES6为对象带来的新特性. 对象传统的写法: let person={ 'name':'Lily', 'say':function(){ alert('hello!'); } } 1.ES6中写法更简便 对象属性: var name='Lily'; var age='13'; var person={name,age}; console.log(person) //{name:'Lily',age:'13'} 对象方法: var person={ say(){ //省略了fun…
then()方法的作用是Promise实例添加解决(fulfillment)和拒绝(rejection)状态的回调函数.then()方法会返回一个新的Promise实例,所以then()方法后面可以继续跟另一个then()方法进行链式调用. let p = new Promise((resolve, reject) => { setTimeout(resolve, 1000, 'success'); }); p.then( res => { console.log(res); return `…