return value after a promise [duplicate] return value after a promise [duplicate] javascript javascript

return value after a promise [duplicate]


Use a pattern along these lines:

function getValue(file) {  return lookupValue(file);}getValue('myFile.txt').then(function(res) {  // do whatever with res here});

(although this is a bit redundant, I'm sure your actual code is more complicated)


The best way to do this would be to use the promise returning function as it is, like this

lookupValue(file).then(function(res) {    // Write the code which depends on the `res.val`, here});

The function which invokes an asynchronous function cannot wait till the async function returns a value. Because, it just invokes the async function and executes the rest of the code in it. So, when an async function returns a value, it will not be received by the same function which invoked it.

So, the general idea is to write the code which depends on the return value of an async function, in the async function itself.