0
Q:

var vs let js

// var has function scope.
// let has block scope.

function func(){
  if(true){
    var A = 1;
    let B = 2;
  }
  A++; // 2 --> ok, inside function scope
  B++; // B is not defined --> not ok, outside of block scope
  return A + B; // NaN --> B is not defined
}
4
let: //only available inside the scope it's declared, like in "for" loop, 
var: //accessed outside the loop "for"
7
The let statement declares a block scope local variable, optionally initializing it to a value.

let x = 1;

if (x === 1) {
  let x = 2;

  console.log(x);
  // expected output: 2
}

console.log(x);
// expected output: 1
8
var: older
let: newer
0
let /*Var name*/ = /*what is equals*/
0

New to Communities?

Join the community