Funwentao

Results 1 comments of Funwentao

```js function mySetInterVal(fn, a, b) { let timeOut = { timeOutId: 0, intervalId: 0 } timeOut.timeOutId = setTimeout(() => { fn() timeOut.intervalId = setInterval(fn, b) }, a) return timeOut }...