我認爲這只是一個初學者的問題:如何解決函數中的特定參數並忽略其他參數?Javascript:僅在函數中使用特定參數
例子:
function test(para_1, para_2, para_3) {
if (para_3 == true) {
alert('only the third parameter was successfully set!');
}
}
test(para_3=true);
我要單獨決定我是否不使用特定參數的函數或沒有。
傳遞一個哈希映射功能 –