Javascript is a way of running webpages, making them more interactive than they are as HTML & CSS
Put scripts at the bottom of the page, good proceedure. Browsers should present the page then make the page useful.
<script src="myScript.js">#
Javascript is enclosed within HTML and specifically within the tags <script>_________</script>
Each line in Javascript is ended with a ;
document.write writes stuff to the webpage
console.log() writes to the console window
window.alert or alert causes a pop-up window ....Â
</script>