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 6589133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:08:02+00:00 2026-05-25T17:08:02+00:00

I just read a great article about JavaScript Scoping and Hoisting by Ben Cherry

  • 0

I just read a great article about JavaScript Scoping and Hoisting by Ben Cherry in which he gives the following example:

var a = 1;

function b() {
    a = 10;
    return;

    function a() {}
}
b();
alert(a);

Using the code above, the browser will alert “1”.

I’m still unsure why it returns “1”. Some of the things he says come to mind like:
All the function declarations are hoisted to the top. You can scope a variable using function. Still doesn’t click for me.

  • 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-25T17:08:02+00:00Added an answer on May 25, 2026 at 5:08 pm

    Function hoisting means that functions are moved to the top of their scope. That is,

    function b() {  
       a = 10;  
       return;  
       function a() {} 
    } 
    

    will be rewritten by the interpeter to this

    function b() {
      function a() {}
      a = 10;
      return;
    }
    

    Weird, eh?

    Also, in this instance,

    function a() {}
    

    behaved the same as

    var a = function () {};
    

    So, in essence, this is what the code is doing:

    var a = 1;                 //defines "a" in global scope
    function b() {  
       var a = function () {}; //defines "a" in local scope 
       a = 10;                 //overwrites local variable "a"
       return;      
    }       
    b();       
    alert(a);                 //alerts global variable "a"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A little while ago I read a great article which described a number of
I just read this article about the Entity Framework 4 (actually version 2). Entity
I just read the Wikipedia article on mock objects , but I'm still not
I just read this post about why new-line warnings exist, but to be honest
I just read Joel Spolsky's article, Up the tata without a tutu , where
I just read about the breadth-first search algorithm in the Introduction to Algorithms book
I just read about HTML 5's WebSocket interface. How can I start trying this?
A long time back, I read a great article that describes a cross-browser friendly
I just happen to read the joel's blog here ... So for example if
Have read some great tutorials online about the new storyboarding feature of xcode 4.2.

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.