how to get data from async function subscribe angular code example
Example 1: "when.promise" async await
somePromiseFunction() .catch(error => handlerErrorFunction(error)) .then(() => doSomethingFunction());try { await somePromiseFunction();} catch (error) { handleErrorFunction(error);} finally { doSomethingFunction();}
Example 2: "when.promise" async await
somePromiseFunction() .then(result => { if (isMeaningful(result)) { return anotherPromiseFunction(); } else { return; }) .then(result => { if (result) { doSomething(); } else { doSomethingAnother(); });const result = await somePromiseFunction();if (isMeaningful(result)) { const anotherResult = await anotherPromiseFunction(); if (anotherResult) { doSomething(); }} else { doSomethingAnother();}