async function testAsync(){ return "Hello async"; } testAsync().then(v => { console.log(v) });
<h2>await</h2>