Is it possible to declare a variable with let or const in a for-loop and access it outside of the loop?

  • Yes, you can access it outside the loop
  • No, it's not accessible outside the loop
  • Only let variables are accessible
  • Only const variables are accessible
Variables declared with let or const in a for-loop are accessible outside of the loop in which they are declared. They have block scope, which means they are confined to the nearest enclosing curly braces, allowing them to be accessed outside the loop.
Add your answer
Loading...

Leave a comment

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