wang-hang
Results
1
comments of
wang-hang
```js function print(n){ setTimeout(() => { console.log(n) }, Math.floor(Math.random() * 1000) + n * 1000) } for(var i = 0; i < 100; i++){ print(i) } ```