<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Comments</h1>
<h2>Comments are NOT Executed</h2>
<p id="demo"></p>
<script>
let x;
x = 5;
// x = 6; I will not be executed
document.getElementById("demo").innerHTML = x;
</script>
</body>
</html>