breakpoint CommandThe breakpoint command pauses execution in the browser DevTools by triggering the JavaScript debugger statement. This is built into core and does not require the hdb extension.
When DevTools are open, execution will pause at the breakpoint, letting you inspect the current state. When DevTools are closed, the command has no effect.
<button _="on click
set x to 42
breakpoint
put x into me
">Debug</button>
breakpoint