คำจำกัดความของฟังก์ชันโดยพื้นฐานแล้วประกอบด้วยฟังก์ชันคำหลัก ตามด้วยชื่อของฟังก์ชัน พารามิเตอร์ของฟังก์ชัน และชุดของวงเล็บปีกกาที่ล้อมรอบคำสั่ง JavaScript
ต่อไปนี้เป็นรหัสสำหรับการใช้คำจำกัดความของฟังก์ชันใน 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; } .sample { font-size: 18px; font-weight: 500; } </style> </head> <body> <h1>JavaScript Function Definitions</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above buttons to see the function definitions</h3> <script> let sampleEle = document.querySelector(".sample"); function helloWorld() { alert("HELLO WORLD"); } let testFunction = function () { alert("TEST FUNCTION"); }; document.querySelector(".Btn").addEventListener("click", () => { sampleEle.innerHTML = helloWorld + "<br>" + testFunction; }); </script> </body> </html>
ผลลัพธ์
เมื่อคลิกปุ่ม “คลิกที่นี่” -