🔰anonymous function
🚧 施工中
// ⭐️ anonymous functions
// ╭─── 🔸 ───╮
(function(){}); // function expression
// ⭐️ Note: "()" are required❗️
// ╭─ 🔸 ─╮
() => {}; // arrow function
// ⭐️ Note:
// function declaration, can't be anonymous❗️
function(){}
// ⛔ SyntaxError: Function statements require a function nameLast updated