DEV Community

Discussion on: Which functions/methods do you...

Collapse
 
rgolawski profile image
Rafał Goławski

This one is pretty neat, I also use it sometimes to "mock" API responses like this 👇

await delay(1000).then(() => ([ { id: 1, data: "some data" } ]))
Enter fullscreen mode Exit fullscreen mode
Collapse
 
danielfy profile image
Daniel Fyhr

I love that one!