JavaScript adds interactivity and dynamic behavior to your web pages. It can respond to user actions, modify content, and more.
Let's create a simple alert:
tag in your index.html
:
<script>
alert("Welcome to my website!");
</script>
An alert box should pop up when you open the page!