NanYi
Results
2
comments of
NanYi
接取issue
```js function mySetInterval(func, delay, ...args) { let timer = null function fun() { return setTimeout(() => { func(...args) timer = fun() }, delay) } timer = fun() return () =>...