私は、一連の機能を持っているとしましょう。どのように各関数に値を渡すのですか?ここで配列内の関数にパラメータを渡すにはどうすればよいですか?
は愚かな例です。
var poopSong =[
function(this){ console.log('this is '+this);},
function(this){ console.log('that is '+this);},
function(this){ console.log('you are '+this);},
];
poopSong("poop")[1];
あなたは 'poopSong [1]( "うんこ")を意味し;'、右? 'forEach'ループを使用するだけです。 – Xufox
なぜ 'array'の各引数で1つの関数を呼び出すことができる' arguments'の 'array'を使いたくないのですか? – DavidDomain