JavaScript
Example of JavaScript:
<!DOCTYPE html>
<html>
<head>
<title>My First JavaScript</title>
</head>
<body>
<h1>Click the Button</h1>
<button onclick="sayHello()">Click Me!</button>
<script>
function sayHello() {
alert("Hello, world!");
}
</script>
</body>
</html>Breaking It Down:
What Happens:
More Examples of JavaScript Features:
What JavaScript Can Do:
Last updated