SOURCE

console 命令行工具 X clear

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