JSFiddle - React, Tailwind, and code Playground

by Mike Jacobson

JavaScript

function getPromise() {
return Promise.resolve(123)
}
async function 
async function main() {
	const res = await getPromise();
  console.log(">>. res: ", res);
}

main();