「JavaScript」asyncを使用するサンプル

2021年6月6日

書式
async function 関数名
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<script>
async function funcA() {
return "ff";
}
funcA()
.then((target) => {
console.log(target);
});
</script>
<script> async function funcA() { return "ff"; } funcA() .then((target) => { console.log(target); }); </script>
<script>
  async function funcA() {
    return "ff";
  }
  funcA()
    .then((target) => {
      console.log(target);
  });
</script>

結果
ff

JavaScript

Posted by arkgame