What happens if you try to redeclare a variable declared with let in the same scope?

  • It generates an error
  • It assigns a new value to the variable
  • It creates a new variable with the same name
  • It deletes the variable
When you attempt to redeclare a variable with let in the same scope, it will generate an error. This is because variables declared with let cannot be redeclared in the same scope.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *