How to disconnect JavaScript Visual Studio 2010 debugger from script

Is there a JavaScript command that will break the Visual Studio 2010 debugger?

The attempt break();did not work, because it is valid only in cycles. It also stop();failed, because he realized that it stop()did not exist, and I did not have a useful stack trace.

+3
source share
1 answer

Javascript has a statement debugger, it runs in firebug, so it should also be in VS 2010.

12.15 debugger operator

DebuggerStatement . .

ECMA-262 5th Edition

+4

Source: https://habr.com/ru/post/1754179/


All Articles