In learning examples, we pass a pre-prepared function as an argument. However, in practice, it is common to write the function directly as an argument. func1(function() { console.log("関数2"); }); ...