<html>
<head>
</head>
<body>
<p id="demo"></p>
<p>With the debugger turned on, the code inside the script element should stop executing before it executes the third line.</p>
<script>
var x = 15 * 5;
debugger;
document.getElementById("demo").innerHTML = x;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_state_debugger by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:01:33 GMT -->
</html>