Answers for "blocking scoping let"

0

blocking scoping let

function fn () {
  let x = 0
  if (true) {
    let x = 1 // only inside this `if`
  }
}
Posted by: Guest on September-27-2021

Browse Popular Code Answers by Language