Per the title, I am curious if every time I create an interval with setInterval
if, because of the shimming done by Angular, if this creates a change detection event every time the interval runs.
I've been reading all the documentation I can find, but I can't find a clear answer on this.
for clarification, my question is, if I ran the following code, would every iteration of the interval trigger a change detection event and cause Angular to attempt to update the view of the application until the conditions are met?
let myInterval = setInterval( () => {
if (conditionsAreMet()){
clearInterval(myInterval);
}
})