HTML: Markup language
CSS: Styling language
JavaScript: Scripting language
Web APIs: Programming interfaces
All web technology
Learn web development
Discover our tools
Get to know MDN better
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
이름이 로컬 범위 내에서만 해당 값에 바인딩되는 변수입니다.
let global = 5; // 전역 변수 function fun() { let local = 10; // 지역 변수 }