I. RAJESH KUMAR (MSc, M.Tech, B.Ed, M.Th)
14. Demonstrating Function
JavaScript
<!DOCTYPE html>
<html>
<head>
<title>Function Example</title>
</head>
<body>
<script>
function greet(name) {
alert("Hello, " + name + "!");
}
greet("Alice");
</script>
</body>
No comments:
Post a Comment