How to track through the debugger that the variable inside the object has been changed? And find out the place of change.
for example
data.prop.name = '77';
But after 200 milliseconds, the value changes to 100.
What is the easiest way to understand where and what changes this value?
Breakpoint
andCallStack
do not help? - Alexander Lonberg