What HTML tag is used to indicate that we are embedding JavaScript code?
<execute>
<script>
<source>
<js>
Answers Explanation & Hints:
The HTML tag used to indicate that we are embedding JavaScript code is the <script> // JavaScript code goes here </script> Alternatively, you can also reference an external JavaScript file by specifying the source using the <script src="script.js"></script> In both cases, the JavaScript code within the |