Labeeb
Labeeb

Reputation: 369

C++ like debugging in Javascript

In the beginning I started learning to program with C++,for that I used Viusal C++, I had a debugging mode in Visual C++ where I could look what values variable have on Run-Time.As JS code is executed in browser I have to consider my self what values variables have. I want to know if there is some debugger available for JS where I can see values changing o0n Run-Time. Because of not knowing about any such debugger I have to spend more time while trying to figure out logical error.

Upvotes: 0

Views: 411

Answers (2)

Marjeta
Marjeta

Reputation: 1141

If you are looking for debugging just JavaScript by itself, check this question: JavaScript IDE/Compiler

Upvotes: 0

Related Questions