how to run javascript code html code example

Example 1: html execute javascript

<!-- 
	Method 1: external script 
	- Should be placed in the <head> section of your HTML
	- The 'src' should contain the path to a local file or external URL
	- The 'defer' attribute will make it execute after the DOM is loaded
-->
<script src="script.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript" defer></script>

<!-- 
	Method 2: inline code 
	- Should be placed in the <head> or <body> section of your HTML
 	- Place it before the </body> to make it execute after the DOM is loaded
-->
<script> alert("Hello world!"); </script>

Example 2: how to run js script

$ node // now we can execute code in console
> 2 + 4 //our input
6 //output 
> .exit // or ctrl + c