Additional Practice for Debugging – CS Principles – Code.org Professional Learning Community https://forum.code.org/t/additional-practice-for-debugging/40107
Hey, as my students are building apps in Unit 6, I have found that they stink at Debugging their programs. They are not good problems solvers or critical thinkers. I am wanting them to have some extra debugging practice…
with unintended behavior var num = 0; if (num <= 0) { console.log("Negative") } else