Optimization of fixed result functions generated in JS

Source: Internet
Author: User

Applicable functions must meet the following conditions:

Produce fixed results

Multiple calls on the page

Complex or time-consuming

The code and analysis are as follows:

Java code:

// Function that generates fixed results and is called multiple times on the page

Function check (){

// Simulate time-consuming operations

Var begin = Date. now (); // added by ECMAScript5. If not, change it to + new Date ();

Var ONE_SECOND = 1000,

Result = false;

While (true ){

If (Date. now ()-begin> = ONE_SECOND ){

Result = true;

Break;

}

}

// Rewrite the function and return the result directly.

Check = function (){

Return result;

}

Return result;

}

Var firstBegin = Date. now ();

Check (); // call the nth Function

Var firstEnd = Date. now ();

Check (); // second-level function call

Var secondEnd = Date. now ();

Console. log ("Time consumed by the nth function:" + (firstEnd-firstBegin) + "ms .");

Console. log ("second quadratic function time-consuming:" + (secondEnd-firstEnd) + "ms .");

The result is as follows:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.