ফাংশনের সংজ্ঞা মূলত কীওয়ার্ড ফাংশন এবং তারপরে ফাংশনের নাম, ফাংশন প্যারামিটার এবং জাভাস্ক্রিপ্ট স্টেটমেন্টগুলিকে ঘিরে কোঁকড়া বন্ধনীর একটি সেট নিয়ে গঠিত।
জাভাস্ক্রিপ্ট -
-এ ফাংশন সংজ্ঞা বাস্তবায়নের জন্য কোডটি নিচে দেওয়া হলউদাহরণ
<!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> আউটপুট

"এখানে ক্লিক করুন" বোতামে ক্লিক করলে -
