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

1036 Views

See similar Javascript Mentoring tutors

Related Javascript Mentoring answers

All answers ▸

What does the document.onload() function do and why is it useful?


If I do var a=3 and var b=4 and then do var c=a+b it tells me the answer is 34. Why?


What does the following code do and why? console.log(1+"2")


How do you create objects in javascript?


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences