This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

지역 변수 (Local variable)

이름이 로컬 범위 내에서만 해당 값에 바인딩되는 변수입니다.

예제

js
let global = 5; // 전역 변수

function fun() {
  let local = 10; // 지역 변수
}

같이 보기