const 関数を受ける関数 = (func) => { console.log(func, func.length); }; 関数を受ける関数((x, y, z) => { console.log(x,y,z) }); // [Function] 3
DRYな備忘録として
const 関数を受ける関数 = (func) => { console.log(func, func.length); }; 関数を受ける関数((x, y, z) => { console.log(x,y,z) }); // [Function] 3
DRYな備忘録として