const asyncFunc = async () => "hi";
asyncFunc().then((result) => console.log(result)); // hi
// is same as
const asyncFunc = async () => {
return Promise.resolve("hi");
};
Thanks for reading π
Follow @codedrops.tech for daily posts.
Instagram β Twitter β Facebook
Micro-Learning β Web Development β Javascript β MERN stack β Javascript
codedrops.tech
Top comments (0)