What is JavaScript?
JavaScript is a programming language used to make websites interactive. It works together with HTML and CSS.
What JavaScript Can Do
- Show alerts
- Change page content
- Respond to user actions
Example
<script>
alert("Hello World");
</script>