javascript utilisant le débogueur

let a = 6;
let b = 9;
let c = a * b;

// stops the execution
debugger;

console.log(c);
SAMER SAEID