where in a document can you place javascrips code example
Example 1: how to link javascript to html
<script src = "index.js"></script>
Example 2: when do i put my script in the body tags in html
<head>
<script></script> <!-- can go up here-->
</head>
<body>
<!-- better to go down here though-->
</body>