// setTimeout(functionRef, delay, param1, param2, /* …, */ paramN) // 其中第三个及以后的参数会被传递给由 functionRef 指定的函数的附加参数 function test(a, b) { console.log(a, b) } setTimeout(test, 1000, 1, 2)