JavaScript can be implemented using JavaScript statements that are placed within the <script>... </script> HTML tags in a web page.
We can also write the JS in the head and body sections.
Syntax:
<script language="javascript" type="text/javascript" >
.....
javascript code.....
......
</script>
or
<script>
.....
javascript code.....
......
</script>
0 Comments