Where to put JavaScript

<html>

<head>
<title> ... </title>
<script>
..... //Script can goes here.

</scrpt>
</head>

<body>
<script>
.....
//Script can goes here also.
//Scipt written in <head>...</head> are loaded between the other elements of the webpage are loaded.
</scrpt>
...
...
...
</body>
</html>

A mini JavaScript reference for labs and homeworks (click into the links for description)