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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:15:52+00:00 2026-06-06T15:15:52+00:00

First i run this (in chrome): var start; var end; start = (new Date()).getTime();

  • 0

First i run this (in chrome):

var start;
var end;

start = (new Date()).getTime();

for(var i=0;i<10e5;i++);

end = (new Date()).getTime();

console.log('delay:' + (end-start));

Output: delay:2028
Then I run this:

function foo() {
    var start;
    var end;

    start = (new Date()).getTime();

    for(var i=0;i<10e5;i++);

    end = (new Date()).getTime();

    console.log('delay:' + (end-start));
}

foo();

Output: delay:8

Why took the same code shorter time when wrappered in a function?

In node it took the same time (6 and 6), but node uses the V8 engine by the chrome isn’t it?

  • 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-06-06T15:15:53+00:00Added an answer on June 6, 2026 at 3:15 pm

    I think the fact that this behavior only appears in the console is extremely telling. I suspect it has to do with how the V8 engine reducing the script down to native code.

    Point #1: I suspect that scope is not the cause of the slowdown:

    function foo() {
        start = (new Date()).getTime();
        for(i=0;i<10e5;i++);
        end = (new Date()).getTime();
        console.log('delay:' + (end-start));
    }
    

    This code uses start, end, and i in the global scope. If searching through the global scope really was the bottleneck, then this code should also run slowly, because it has no local variables in the function.

    Point #2: If you put your code in an actual web page, it runs very quickly either way. This suggests to me that running code in the console is the source of the slowdown.

    Ordinarily, on a web page, the V8 engine assembles JavaScript into native binary code so it runs very quickly. However, I suspect that code run from the console is not compiled (or is perhaps compiled line-by-line as it is run, which itself incurs a time cost). When a function definition is entered, though, the function is compiled, in its entirety, before it is run for the first time. By the time the program flow reaches the foo() call, the function foo has already been compiled into native code. Thus the function runs quickly because it has been pre-compiled, but the raw code in the console has not been pre-compiled, so it runs slowly.

    This is largely speculation, but so is every answer to this question. This is the only explanation I can possibly devise that accounts for both points #1 and #2 above.

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

Sidebar

Related Questions

when I run this code for the first time <?php session_start(); echo SID; ?>
I have a task in Python and i run this task for first time
Okay this is my first WPF app and I am having a hard run
at first i ran this code on php file and run it on localhost
Every time when I run my test first step is log in and than
Why does this jQuery snippet seem to not run the first time around? It
I'm trying to run a javascript window.print() from chrome. It prints the first time
This is my first jQuery script, which works great in Firefox and Chrome, but
I tried to run this code: #define ROW_CNT 8; #define COLUMN_CNT 24; #define FIRST_COLUMN
When I first run my program and type some text in the richtextbox, if

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.