1. MDN Web Docs 용어 사전: 웹 용어 정의
  2. 지역 변수 (Local variable)

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; // 지역 변수
}

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /