2021 iThome 鐵人賽
分享至
函式引數在W3school的解釋為:
函式引數
Function arguments are the real values passed to (and received by) the function.函式引數是實際傳送給函式,或函式內接收到的值。
function myFunc(a,b,c) { console.log(1,2,3); }
IT邦幫忙