摘要:
1.增强的对象字面量 function fn(){ return 100; } let name='sui'; let age=19; let sui={ name, age, ["pro"+fn()]:"sdfe", play(){ console.log("我会打大鱼") } }; consol 阅读全文
摘要:
第1节let // ES6 — let let a = 1; if (1 === a) { let b = 2; } for (let c = 0; c 阅读全文