JSFiddle - React, Tailwind, and code Playground

JavaScript

// Declare a function with async
async function returnHello(){
	return "hello world";
}

async function printSomething(){
    // await an async string
	const result = await returnHello();
    
    // print the string we got asynchronously
    console.log(result);
}

// Run our async code
printSomething();