// debugger keyword // You may not hear about the debugger keyword. // It's a keyword that is used to stop the execution of the code. const buggyCode = () => { debugger; console.log("hi"); }; // ... buggyCode(); console.log("World");