Can a JavaScript debugger do "when this variable is read", the breakpoint is there, like a C / C ++ debugger?
I call some library function, and at heart it finally does something with this argument, and instead of manually finding where it actually uses this value, can I say stop the code when accessing the variable?
source
share