promises are executed only if you call .then on them or this is how I learned it.
Async functions are what I understand functions "turned" promises. Do I need to call .then on them each time I want to invoke an async function?
async function loadStory(){}
....
loadStory()
or
loadStory().then