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

  • Home
  • SEARCH
  • 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 6167133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:27:32+00:00 2026-05-23T22:27:32+00:00

How exactly is code in JavaScript executed? I mean in what order? Would there

  • 0

How exactly is code in JavaScript executed? I mean in what order? Would there be a difference in the order of execution if I declared a function like this:

function render() {
    // Code here
}

instead of this:

var render = new function(){
    // Same code here
}    

Does JavaScript execute functions that are defined in a scripting file regardless of whether they’re called by an event handler? (e.g. onload=function()).

And finally if a function is defined in another function, when the parent function is called, is the lower function also called too? e.g.

function a(){

    function b(){
        // code
    }

    function c(){
        //code
    }

}

I’m trying to get a concrete understanding of order of execution in JavaScript.

  • 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-23T22:27:32+00:00Added an answer on May 23, 2026 at 10:27 pm
    var render = new function(){
      // same code here
    }
    

    The new keyword doesn’t create a new Function. It creates a new object by running the function. So this would actually run the body of the method and return an object instead.

    If your asking when are functions parsed and added to scope then that’s implementation specific, but all functions are hoisted to the top of scope and generally parsed before any code is executed.

    Functions are only executed when you call them by invoking f()

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

Sidebar

Related Questions

Edit: Of course my real code doesn't look exactly like this. I tried to
Following javascript code gives me output like : 1314066350368 new Date().getTime(); I would like
The code in this event is repeated exactly in two other event handlers. How
In the code there exists exactly one type that implements IResourceConverter. That's what the
Can anyone tell me what exactly does this Java code do? SecureRandom random =
how exactly I can use public methods (non-virtual) with NHibernate? I have this code:
I often see JavaScript code which checks for undefined parameters etc. this way: if
I have got this JavaScript code for uploading files to my server (named it
We have a JQuery $(function() statement as: <script type=text/javascript> $(function(){ //Code.. }) </script> Dumb
Talking about XBL is not exactly talking about javascript. So I'll create this question

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.