You can include many JavaScript files in you html page.
<script src="script.js"></script>
If you included the script in the BODY section than it will be executed except for functions that you have to call.
If you include the script in the body section all DOM tags must be defined before the script.
Include in the HEAD section does not required this..