reactjs - Why will enabling "pause on caught exceptions" improve my debugging experience? -
it's simple: if pause on exceptions, can see stack @ time of exception. can see call stack of functions lead exception, current scope's variables, @ time of exception.
if don't this, js fail call stack, produce exception in console, , continue running next statement. lead loss of stack information @ time of exception.
Comments
Post a Comment