trisquel-icecat/icecat/devtools/client/debugger/test/mochitest/examples/simple4.js

15 lines
165 B
JavaScript

function funcA() {
debugger;
funcB();
funcC();
}
function funcB() {
console.log("Hello!");
}
function funcC() {
console.log("You made it!");
}
funcA();