Script tag is the primary tag which identifies javascript.
Any javascript code should be written in between the script tag.
<script language="javascript"> </script>
Here the attribute language defines the language used.
For VBscript user it will be vbscript.
The script tag can be written anywhere inside head or body tag of html.
Example:
<html>
<head></head>
<body>
<script language=javascript>
//code comes here.....
//code comes here.....
//code comes here.....
</script>
</body>
</html>
A Note
Javascript (JS) is one of the most used languages in the world. Some times spelled as Java Script.
Hope you enjoy this tutorial. Do send your feedback or suggestions on this javascript or java script tutorial. This is a copyright content.