script

The script element is used to include JavaScript code in an HTML document. It can be used to add interactivity to the document, such as event listeners and animations.

Example:

<script>
function myFunction() {
console.log("Hello, world!");
}
</script>