ans: JavaScript is a dynamic computer programming language. It most commonly used as a part of web pages, whose implementations allow client-side script to interact with the user and make dynamic pages
JavaScript variables are containers for storing data values.
In this example, x, y, and z, are variables:
<script>var x = 1;document.write(x);</script>