Day 24 0f #100daysofjs

The script tag

The script tag is used to insert javascript into an HTML page.

The script tag can be used to insert external and internal scripts.

Internal
<script>
Hello World
</script>
or
External
<script src=""></script>

The benefit of a separate javascript file is that the browser will download it and store it in its cache.

Edit this text