毛毛

Results 3 comments of 毛毛

``` js function mySetInterVal(fn, a, b){ let count = 0; let timer; (function loop(){ timer = setTimeout(()=> { fn() count ++; loop() }, a + b * count) })() return...