iT邦幫忙

2021 iThome 鐵人賽

DAY 14
0
Modern Web

JavaScript 基礎修練系列 第 14

[Day14] JavaScript - 函式引數 Arguments

  • 分享至 

  • xImage
  •  

函式引數在W3school的解釋為:

Function arguments are the real values passed to (and received by) the function.
函式引數是實際傳送給函式,或函式內接收到的值。

  • 以下程式碼來說,1、2、3即為函式的引數。
function myFunc(a,b,c) {
    console.log(1,2,3);
}
  • 引數是用於呼叫函式,
  • 如果函式在呼叫時未提供實際引數,引數會預設設定為undefined。
  • 函式對實際引數沒有進行型別檢測。
  • 函式對實際引數的個數沒有進行檢測。

上一篇
[Day13] JavaScript - 函式參數 (parameters)
下一篇
[Day15] JavaScript - 同步(Synchronous) 與 非同步 (Asynchronous)
系列文
JavaScript 基礎修練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言