JSFiddle - React, Tailwind, and code Playground

by Arnaud Buchholz

JavaScript

function test () {
  return {
    then: (callback => callback('Hello World !'))
  }
}


async function main () {
  const result = await test()
  console.log(result)
}

main()