When you say return promise;
there’s no implicit await; the cell returns the Promise. But, it looks equivalent to return await promise;
because the inspector waits for the returned promise to resolve before displaying the value.
1 Like