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
A variable whose name is bound to its value only within a local scope.
let global = 5; // A global variable function fun() { let local = 10; // A local variable }