ส่งผ่านพารามิเตอร์ต่างๆ ขณะเรียกใช้ฟังก์ชัน พารามิเตอร์ที่ส่งผ่านเหล่านี้สามารถบันทึกได้ภายในฟังก์ชัน และการจัดการใดๆ สามารถทำได้เหนือพารามิเตอร์เหล่านั้น ฟังก์ชันรับพารามิเตอร์หลายตัวคั่นด้วยเครื่องหมายจุลภาค
ต่อไปนี้เป็นรหัสสำหรับการใช้พารามิเตอร์ของฟังก์ชันใน 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 Parameters</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above buttons to see the function parameters </h3> <script> let sampleEle = document.querySelector(".sample"); test(param1, param2, param3, param4) { sampleEle.innerHTML = "The parameters for the function are <br>"; Array.from(arguments).forEach((element, index) => { sampleEle.innerHTML += "Parameter " + index + " = " + element + "<br>"; }); } document.querySelector(".Btn").addEventListener("click", () => { test("Hello", "world", 22, 99); }); </script> </body> </html>
ผลลัพธ์
เมื่อคลิกปุ่ม “คลิกที่นี่” -