how to write in js file code example
Example 1: js script
<script src="javascript.js"></script>
Example 2: how to add script in html head
<script src="script.js" defer></script>
<!--just add defer attribute so script will execute at last-->
Example 3: how to write in js
document.write("put your text here!");