「JavaScript」アロー関数を使用するサンプル
書式
const 関数名 = () => setInterval(() => 処理コード
関数名();
使用例
<script> const funA = () => setInterval(() => alert("3秒経過"), 3000); funA(); </script>
Coding Changes the World
書式
const 関数名 = () => setInterval(() => 処理コード
関数名();
使用例
<script> const funA = () => setInterval(() => alert("3秒経過"), 3000); funA(); </script>