區域性變數

一個 變數,它的名稱僅在其 區域性作用域 內繫結到其

示例

js
let global = 5; // A global variable

function fun() {
  let local = 10; // A local variable
}

另見