How do I call a function in a set Time interval in Angular 2. I want it to be called/Triggered at specific time intervals(for eg 10 secs). For Eg: ts File
nu
You may also try the traditional setInterval function.
setInterval(() => { this.callFuntionAtIntervals(); }, 1000);