JavaScript Hoisting: Function Can Refer to Another Function Declared Below It?How can I merge properties of two JavaScript objects dynamically?How can I convert a string to boolean in JavaScript?What's the difference between using “let” and “var”?Set a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?How do I include a JavaScript file in another JavaScript file?How can I pretty-print JSON using JavaScript?Is there a standard function to check for null, undefined, or blank variables in JavaScript?Javascript function scoping and hoistingJavaScript 'hoisting'

Maximum likelihood parameters deviate from posterior distributions

Java Casting: Java 11 throws LambdaConversionException while 1.8 does not

How to determine what difficulty is right for the game?

Do infinite dimensional systems make sense?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

Arrow those variables!

How can bays and straits be determined in a procedurally generated map?

Cross compiling for RPi - error while loading shared libraries

How is it possible to have an ability score that is less than 3?

infared filters v nd

How much of data wrangling is a data scientist's job?

What's the output of a record needle playing an out-of-speed record

Today is the Center

meaning of に in 本当に?

Why is 150k or 200k jobs considered good when there's 300k+ births a month?

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

Why does Kotter return in Welcome Back Kotter?

How does quantile regression compare to logistic regression with the variable split at the quantile?

Languages that we cannot (dis)prove to be Context-Free

What does "Puller Prush Person" mean?

Malformed Address '10.10.21.08/24', must be X.X.X.X/NN or

Are the number of citations and number of published articles the most important criteria for a tenure promotion?

Replacing matching entries in one column of a file by another column from a different file

Is it inappropriate for a student to attend their mentor's dissertation defense?



JavaScript Hoisting: Function Can Refer to Another Function Declared Below It?


How can I merge properties of two JavaScript objects dynamically?How can I convert a string to boolean in JavaScript?What's the difference between using “let” and “var”?Set a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?How do I include a JavaScript file in another JavaScript file?How can I pretty-print JSON using JavaScript?Is there a standard function to check for null, undefined, or blank variables in JavaScript?Javascript function scoping and hoistingJavaScript 'hoisting'






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I have:



// Shouldn't we have the following hoisted?
// var multiply; (undefined)
// var add; (undefined)

var multiply = function(num)
return add(num) * 2;
;

var add = function(num)
return num + 1;
;

console.log(multiply(1)); // No error, somehow "multiply" calls "add"!


I thought that JavaScript variables are hoisted to the top, but not the values that they are assigned to. Somehow multiply calling add doesn't return an error, even though add is declared below multiply.










share|improve this question
























  • I think so, based on my admittedly flawed memory of reading this blog.bitsrc.io/…, which might teach you more than you wanted to know. The basics I remember include that each function gets its own execution context which includes a couple of internal lexical environments (one of which is specific to those identifiers declared with var) and these lexical environments can access the outer environment. Also, I think var and function declarations get hoisted but let and const declarations don't...

    – Cat
    Mar 9 at 1:32











  • The explanation is pretty simple. JS lets your functions reference variables that don't exist. So the potential for error only comes after the function is invoked. At the time of invocation, if the referenced variable doesn't exist, you get an error. As a test, remove the add() function, and update multiply() so that it uses a try/catch, where the try tries to call add(), and the catch creates it at window.add = function() .... You'll see that the ReferenceError is caught on the first invocation, but subsequent invocations succeed.

    – ziggy wiggy
    Mar 9 at 1:50












  • ...like this: jsfiddle.net/cpzj309w

    – ziggy wiggy
    Mar 9 at 1:53

















1















I have:



// Shouldn't we have the following hoisted?
// var multiply; (undefined)
// var add; (undefined)

var multiply = function(num)
return add(num) * 2;
;

var add = function(num)
return num + 1;
;

console.log(multiply(1)); // No error, somehow "multiply" calls "add"!


I thought that JavaScript variables are hoisted to the top, but not the values that they are assigned to. Somehow multiply calling add doesn't return an error, even though add is declared below multiply.










share|improve this question
























  • I think so, based on my admittedly flawed memory of reading this blog.bitsrc.io/…, which might teach you more than you wanted to know. The basics I remember include that each function gets its own execution context which includes a couple of internal lexical environments (one of which is specific to those identifiers declared with var) and these lexical environments can access the outer environment. Also, I think var and function declarations get hoisted but let and const declarations don't...

    – Cat
    Mar 9 at 1:32











  • The explanation is pretty simple. JS lets your functions reference variables that don't exist. So the potential for error only comes after the function is invoked. At the time of invocation, if the referenced variable doesn't exist, you get an error. As a test, remove the add() function, and update multiply() so that it uses a try/catch, where the try tries to call add(), and the catch creates it at window.add = function() .... You'll see that the ReferenceError is caught on the first invocation, but subsequent invocations succeed.

    – ziggy wiggy
    Mar 9 at 1:50












  • ...like this: jsfiddle.net/cpzj309w

    – ziggy wiggy
    Mar 9 at 1:53













1












1








1








I have:



// Shouldn't we have the following hoisted?
// var multiply; (undefined)
// var add; (undefined)

var multiply = function(num)
return add(num) * 2;
;

var add = function(num)
return num + 1;
;

console.log(multiply(1)); // No error, somehow "multiply" calls "add"!


I thought that JavaScript variables are hoisted to the top, but not the values that they are assigned to. Somehow multiply calling add doesn't return an error, even though add is declared below multiply.










share|improve this question
















I have:



// Shouldn't we have the following hoisted?
// var multiply; (undefined)
// var add; (undefined)

var multiply = function(num)
return add(num) * 2;
;

var add = function(num)
return num + 1;
;

console.log(multiply(1)); // No error, somehow "multiply" calls "add"!


I thought that JavaScript variables are hoisted to the top, but not the values that they are assigned to. Somehow multiply calling add doesn't return an error, even though add is declared below multiply.







javascript function scope hoisting lexical






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 at 1:40







Hadoren

















asked Mar 9 at 1:01









HadorenHadoren

82210




82210












  • I think so, based on my admittedly flawed memory of reading this blog.bitsrc.io/…, which might teach you more than you wanted to know. The basics I remember include that each function gets its own execution context which includes a couple of internal lexical environments (one of which is specific to those identifiers declared with var) and these lexical environments can access the outer environment. Also, I think var and function declarations get hoisted but let and const declarations don't...

    – Cat
    Mar 9 at 1:32











  • The explanation is pretty simple. JS lets your functions reference variables that don't exist. So the potential for error only comes after the function is invoked. At the time of invocation, if the referenced variable doesn't exist, you get an error. As a test, remove the add() function, and update multiply() so that it uses a try/catch, where the try tries to call add(), and the catch creates it at window.add = function() .... You'll see that the ReferenceError is caught on the first invocation, but subsequent invocations succeed.

    – ziggy wiggy
    Mar 9 at 1:50












  • ...like this: jsfiddle.net/cpzj309w

    – ziggy wiggy
    Mar 9 at 1:53

















  • I think so, based on my admittedly flawed memory of reading this blog.bitsrc.io/…, which might teach you more than you wanted to know. The basics I remember include that each function gets its own execution context which includes a couple of internal lexical environments (one of which is specific to those identifiers declared with var) and these lexical environments can access the outer environment. Also, I think var and function declarations get hoisted but let and const declarations don't...

    – Cat
    Mar 9 at 1:32











  • The explanation is pretty simple. JS lets your functions reference variables that don't exist. So the potential for error only comes after the function is invoked. At the time of invocation, if the referenced variable doesn't exist, you get an error. As a test, remove the add() function, and update multiply() so that it uses a try/catch, where the try tries to call add(), and the catch creates it at window.add = function() .... You'll see that the ReferenceError is caught on the first invocation, but subsequent invocations succeed.

    – ziggy wiggy
    Mar 9 at 1:50












  • ...like this: jsfiddle.net/cpzj309w

    – ziggy wiggy
    Mar 9 at 1:53
















I think so, based on my admittedly flawed memory of reading this blog.bitsrc.io/…, which might teach you more than you wanted to know. The basics I remember include that each function gets its own execution context which includes a couple of internal lexical environments (one of which is specific to those identifiers declared with var) and these lexical environments can access the outer environment. Also, I think var and function declarations get hoisted but let and const declarations don't...

– Cat
Mar 9 at 1:32





I think so, based on my admittedly flawed memory of reading this blog.bitsrc.io/…, which might teach you more than you wanted to know. The basics I remember include that each function gets its own execution context which includes a couple of internal lexical environments (one of which is specific to those identifiers declared with var) and these lexical environments can access the outer environment. Also, I think var and function declarations get hoisted but let and const declarations don't...

– Cat
Mar 9 at 1:32













The explanation is pretty simple. JS lets your functions reference variables that don't exist. So the potential for error only comes after the function is invoked. At the time of invocation, if the referenced variable doesn't exist, you get an error. As a test, remove the add() function, and update multiply() so that it uses a try/catch, where the try tries to call add(), and the catch creates it at window.add = function() .... You'll see that the ReferenceError is caught on the first invocation, but subsequent invocations succeed.

– ziggy wiggy
Mar 9 at 1:50






The explanation is pretty simple. JS lets your functions reference variables that don't exist. So the potential for error only comes after the function is invoked. At the time of invocation, if the referenced variable doesn't exist, you get an error. As a test, remove the add() function, and update multiply() so that it uses a try/catch, where the try tries to call add(), and the catch creates it at window.add = function() .... You'll see that the ReferenceError is caught on the first invocation, but subsequent invocations succeed.

– ziggy wiggy
Mar 9 at 1:50














...like this: jsfiddle.net/cpzj309w

– ziggy wiggy
Mar 9 at 1:53





...like this: jsfiddle.net/cpzj309w

– ziggy wiggy
Mar 9 at 1:53












1 Answer
1






active

oldest

votes


















1














You are correct in that the declarations are hoisted to the top, while the assignments are not.



However, functions don't keep the values of any variables outside of them from when they are created. Instead, they use whatever is in them when they are called. In this case, add is undefined when the multiply function is created, but is assigned a function before multiply is called, so multiply uses the new assigned function.



To see this more clearly, consider this code:






var multiply = function(num) 
return add(num) * 2;
;

// Would be an error
// console.log(multiply(1));

var add = function(num)
return num + 1;
;

console.log(multiply(1)); // Prints 4

add = function(num)
return num + 2;
;

console.log(multiply(1)); // Prints 6





The last console.log prints 6 because multiply used the new function in add instead of keeping the one it had before.






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072977%2fjavascript-hoisting-function-can-refer-to-another-function-declared-below-it%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    You are correct in that the declarations are hoisted to the top, while the assignments are not.



    However, functions don't keep the values of any variables outside of them from when they are created. Instead, they use whatever is in them when they are called. In this case, add is undefined when the multiply function is created, but is assigned a function before multiply is called, so multiply uses the new assigned function.



    To see this more clearly, consider this code:






    var multiply = function(num) 
    return add(num) * 2;
    ;

    // Would be an error
    // console.log(multiply(1));

    var add = function(num)
    return num + 1;
    ;

    console.log(multiply(1)); // Prints 4

    add = function(num)
    return num + 2;
    ;

    console.log(multiply(1)); // Prints 6





    The last console.log prints 6 because multiply used the new function in add instead of keeping the one it had before.






    share|improve this answer





























      1














      You are correct in that the declarations are hoisted to the top, while the assignments are not.



      However, functions don't keep the values of any variables outside of them from when they are created. Instead, they use whatever is in them when they are called. In this case, add is undefined when the multiply function is created, but is assigned a function before multiply is called, so multiply uses the new assigned function.



      To see this more clearly, consider this code:






      var multiply = function(num) 
      return add(num) * 2;
      ;

      // Would be an error
      // console.log(multiply(1));

      var add = function(num)
      return num + 1;
      ;

      console.log(multiply(1)); // Prints 4

      add = function(num)
      return num + 2;
      ;

      console.log(multiply(1)); // Prints 6





      The last console.log prints 6 because multiply used the new function in add instead of keeping the one it had before.






      share|improve this answer



























        1












        1








        1







        You are correct in that the declarations are hoisted to the top, while the assignments are not.



        However, functions don't keep the values of any variables outside of them from when they are created. Instead, they use whatever is in them when they are called. In this case, add is undefined when the multiply function is created, but is assigned a function before multiply is called, so multiply uses the new assigned function.



        To see this more clearly, consider this code:






        var multiply = function(num) 
        return add(num) * 2;
        ;

        // Would be an error
        // console.log(multiply(1));

        var add = function(num)
        return num + 1;
        ;

        console.log(multiply(1)); // Prints 4

        add = function(num)
        return num + 2;
        ;

        console.log(multiply(1)); // Prints 6





        The last console.log prints 6 because multiply used the new function in add instead of keeping the one it had before.






        share|improve this answer















        You are correct in that the declarations are hoisted to the top, while the assignments are not.



        However, functions don't keep the values of any variables outside of them from when they are created. Instead, they use whatever is in them when they are called. In this case, add is undefined when the multiply function is created, but is assigned a function before multiply is called, so multiply uses the new assigned function.



        To see this more clearly, consider this code:






        var multiply = function(num) 
        return add(num) * 2;
        ;

        // Would be an error
        // console.log(multiply(1));

        var add = function(num)
        return num + 1;
        ;

        console.log(multiply(1)); // Prints 4

        add = function(num)
        return num + 2;
        ;

        console.log(multiply(1)); // Prints 6





        The last console.log prints 6 because multiply used the new function in add instead of keeping the one it had before.






        var multiply = function(num) 
        return add(num) * 2;
        ;

        // Would be an error
        // console.log(multiply(1));

        var add = function(num)
        return num + 1;
        ;

        console.log(multiply(1)); // Prints 4

        add = function(num)
        return num + 2;
        ;

        console.log(multiply(1)); // Prints 6





        var multiply = function(num) 
        return add(num) * 2;
        ;

        // Would be an error
        // console.log(multiply(1));

        var add = function(num)
        return num + 1;
        ;

        console.log(multiply(1)); // Prints 4

        add = function(num)
        return num + 2;
        ;

        console.log(multiply(1)); // Prints 6






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 9 at 1:54









        VLAZ

        5,10742235




        5,10742235










        answered Mar 9 at 1:08









        NicholasNicholas

        30619




        30619





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072977%2fjavascript-hoisting-function-can-refer-to-another-function-declared-below-it%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

            Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

            How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page