I have Javascript objects (some are arrays) that get populated during http get requests. Some of the values of a property in an object get updated during execution. The code is not mine so I am tracking down where in the code these values get changed. It can be time consuming to do do this tracking so I am looking if there's a way for the debugger to break when a property value changes.
I've seen similar questions on SO but they date back a few years and they suggest using different kinds of code snippets. I would like to think this has gotten easier with one of the modern browsers with maybe a built-in devtools functionality? Is there? If not, what is a good JS snippet to do this?