You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
391 B
JavaScript

//()()写法:后面括号指的是"立即执行一次前面括号里的代码(不只是函数,全部执行一次)"
(() => {
const f1 = () => { console.log("---- 执行函数 f1 ----"); };
const f2 = () => { console.log("---- 执行函数 f2 ----"); };
console.log("====================== ES6学习 =====================");
f1();
f2();
//其它业务逻辑
})();