This page was translated from English by the community. Learn more and join the MDN Web Docs community.
지역 변수 (Local variable)
예제
js
let global = 5; // 전역 변수
function fun() {
let local = 10; // 지역 변수
}
같이 보기
- 위키백과의 지역 변수
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
let global = 5; // 전역 변수
function fun() {
let local = 10; // 지역 변수
}