11
Skepter
7y

Using the console to print out variables is a perfectly valid method of debugging for new developers: often, it can help you resolve the problem faster than using a debugger.

Comments
  • 0
    When using C you have both. Printf is a breakpoint if you want to print something you don't know where or what is.
  • 1
    I almost exclusively do it that way in PHP, JavaScript and Java. I've been doing those for 6 years now.
Add Comment