Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6751351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:55:00+00:00 2026-05-26T12:55:00+00:00

I know that JavaScript vars point to a value: var foo = true; //…

  • 0

I know that JavaScript vars point to a value:

var foo = true;
//... later 
foo = false;

So in that example I’ve changed foo pointing to true -> foo pointing to false, but if I do:

for (var i=0; i<100; i++){
    var someVar = i;
}

Am I creating a new var for each iteration?

Is there any difference in the following two ways of doing the same?

var myvar;
for (var i=0; i<100; i++){
    myvar = i;
}

and

for (var i=0; i<100; i++){
    var myvar = i;
}

If so, why?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T12:55:00+00:00Added an answer on May 26, 2026 at 12:55 pm

    There is no block scope in Javascript ES5 and earlier, only function scope. Furthermore, the declarations of all javascript variables declared within a function scope are automatically “hoisted” to the top of the function.

    So, declaring a variable within a loop isn’t doing anything different than declaring it at the top of the function and then referencing it within the loop.

    See these two references for some useful explanation: http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting and http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-javascript-hoisting-explained/.

    Note: the assignment to a variable is not hoisted, just the declaration of the variable. So, if you do this:

    function a() {
        for (var i=0; i<100; i++){
            var myvar = i;
        }
    }
    

    It works like this:

    function a() {
        var myvar;
        for (var i=0; i<100; i++){
            myvar = i;
        }
    }
    

    If you wanted to create a new scope inside your for loop, you could use an IIFE (immediately invoked function expression) like this:

    function a() {
        for (var i=0; i<100; i++){
            (function() {
                var myvar = i;
                // myvar is now a separate variable for each time through the for loop
            })();
        }
    }
    

    Update in 2015. ES6 (or sometimes called ES2015) offers the let declaration which does offer block scope. In that case a let variable declaration is hoisted only to the top of the current block scope. As of mid 2015, this is not yet widely implemented in browsers, but is coming soon and it is available in server-side environments like node.js or via transpilers.

    So, in ES6 if you did this:

    for (let i=0; i<100; i++){
        let someVar = i;
    }
    

    Both i and someVar would be local to the loop only.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that javascript, for example supports functions inside of functions, like so: function
I know that JavaScript return false means prevent default event (like preventDefault() method). #1
I know that javascript doesn't have pointers in terms of a variable referring to
I know that in JavaScript, creating a for loop like this: for(int i =
I know that in Javascript document.location.href = #my_id tells the browser to display the
I know that google's v8 compiles javascript into native machine (binary if I understand
I know that Visual Studio 2008 support JavaScript intellisense as I am using it
In JavaScript, I know that a closure is can be defined as a nested
Is there a good profiler for javascript? I know that firebug has some support
I need to have some information about the scoping in JavaScript. I know that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.