This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Debugger

With the debugger turned on, the code below should stop executing before it executes the third line.

let x = 15 * 5;
debugger;
document.getElementById("demo").innerHTML = x;