Skip to content

Tag: promise

Javascript: Error in Promise implementation

I’m trying to perform async function and then console log the results with the help of Promise. I’m afraid I haven’t quite grasped the concept yet. I wanted to wait till getlinks finished performing tasks and then console log the result. But the it logs the result as empty even before the ge…

How does Promise Chaining work in memory?

Console Output: My main question is what is actually happening when the global execution context thread is finished and popped of the execution stack. How does JS/V8 know where this Promise Object is in memory if the Promise Object is not assigned to a variable within global execution context? How does it kno…

How can I retry function?

I’m developing a script for personal needs. I need to retry if an error returned, but I don’t know how to fix it. how to resolve it? But I get the following error: TypeError: You may only yield a function, promise, generator, array, or object, but the following object was passed: “[object Ob…