nancy icon indicating copy to clipboard operation
nancy copied to clipboard

How JavaScript Promise Works

Results 2 nancy issues
Sort by recently updated
recently updated
newest added

This is an awesome great functional implementation that uses state machine! Many other implementations use too much repeated if checks. It would greater if Nancy can pass all the Promise...

I read the asynchronous part (callLater), but couldn’t understand the mechanism. Can you explain it a bit more? ### Bug the code by `Promise`: ```js console.log(1) Promise.resolve(2).then(v=>console.log(v)) console.log(3) # or...