0

Why TimerObservable.create(0, 1).subscribe(t => { console.log('ms', t) }) doesn't return milliseconds but something slower ?

Swarovski
  • 581
  • 2
  • 8
  • 25

1 Answers1

1

It appears that browsers have a minimum value for the interval (which is usually 4ms). This question seems to be related. Also see this in the Notes section under Reasons for delays longer than specified

Jay
  • 175
  • 1
  • 6