JavaScript 中的简洁箭头函数
简洁的箭头函数语法如下:
(param1, param2) =>param1+param2
它没有 function 关键字和函数主体。在参数和函数主体之间仅有 =>,如果只有一个参数,还可以这样写:
param1=>param1*2
如果 => 后面没有大括号 {},则它有隐式返回。
以下是 JavaScript 中实现简洁箭头函数的代码:
范例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: blueviolet; } </style> </head> <body> <h1>Concise arrow functions</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to call the add() concise arrow function</h3> <script> let resEle = document.querySelector(".result"); let add = (a, b) => a + b; document.querySelector(".Btn").addEventListener("click", () => { resEle.innerHTML = "Sum of 32 and 19 =" + add(32, 19); }); </script> </body> </html>
输出
单击“点我”按钮时:
广告