Function Optimization tips for generating fixed results in Javascript _ javascript skills

Source: Internet
Author: User
Share an optimization technique for writing functions in Javascript. Applicable functions must meet the following conditions; produce fixed results; complex or time-consuming functions, if you are interested, you can learn about the optimization techniques for writing functions in Javascript.
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:

The Code is as follows:


// 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::
Related Article

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.