async function implicitly returns promise?
The return value will always be a promise. If you don’t explicitly return a promise, the value you return will automatically be wrapped in a promise. async function increment(num) { return num + 1; } // Even though you returned a number, the value is // automatically wrapped in a promise, so we call // … Read more