JavaScript usando depurador
let a = 6;
let b = 9;
let c = a * b;
// stops the execution
debugger;
console.log(c);
SAMER SAEID
let a = 6;
let b = 9;
let c = a * b;
// stops the execution
debugger;
console.log(c);