摘要: 1.增强的对象字面量 function fn(){ return 100; } let name='sui'; let age=19; let sui={ name, age, ["pro"+fn()]:"sdfe", play(){ console.log("我会打大鱼") } }; consol 阅读全文
posted @ 2017-07-11 19:50 前端兵哥哥 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 第1节let // ES6 — let let a = 1; if (1 === a) { let b = 2; } for (let c = 0; c 阅读全文
posted @ 2017-07-11 10:01 前端兵哥哥 阅读(221) 评论(0) 推荐(0) 编辑