The Power of 'debugger'
One of the most powerful things programmers can learn early on is how to debug. It's necessity cannot be underestimated when programming and building your dream app. Why? Because the debugger is a programmers eagle eye in the sky.
There are many ways to debug apps and normally it's best to choose one which works best for you. In order to make that decision, it's important to have a fundmental understanding of how debuggers work and when to step over
or step in
, for example.
Setting up debugger for VScode (my preference) can be daunting so let me walk you through it step by step. So when you hit your next problem, you know how to solve it yourself.
Cheers,
J