「JavaScript」関数側にsetIntervalを配置するサンプル

書式
function () {
setInterval(function () {
処理コード
},秒数);

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<script>
const funA = function () {
setInterval(function () {
console.log("2秒経過しました");
}, 2000);
};
funA();
</script>
<script> const funA = function () { setInterval(function () { console.log("2秒経過しました"); }, 2000); }; funA(); </script>
<script>
  const funA = function () {
    setInterval(function () {
      console.log("2秒経過しました");
    }, 2000);
  };
  funA();
</script>

 

JavaScript

Posted by arkgame