“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to display PI.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
{
document.getElementById("demo").innerHTML=Math.PI;
}
</script>
</body>
</html>