What is the difference between let and var when declaring variables in javascript?

Both let and var create mutable (re-assignable) variables in JavaScript. Both follow the same initalisation pattern as well:var a = 123;let a = 123;The difference between let and var comes down to something called scope.A variable declared using the var syntax will be availible for the entire local scope function it's declared in.A variable that is declared using the let syntax, will only be availible for the scope in which it is declaredHere are some examples:function aFunction() { var globalA = 123; let globalB = 123; for(let i = 0; i < 10; i++) { let x = i; console.log(x) // 0 to 10 } console.log(x) // undefined <- Outside of the scope of this variable for(var j = 0; j < 10; j++) { console.log(j); // 0 to 10 } console.log(j) // 10}

LB
Answered by Luke B. Javascript tutor

1223 Views

See similar Javascript Mentoring tutors

Related Javascript Mentoring answers

All answers ▸

I've just heard about objects. How do I use them and do they work with Arrays?


Make button that says how many times it has been clicked.


How do you create objects in javascript?


How to check if value exists in an object in JavaScript?


We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

MyTutor is part of the IXL family of brands:

© 2025 by IXL Learning