intervalfn(fn, delay) { function interval() { setTimeout(() => { fn(); interval(); }, delay); } interval(); }