JavaScript code optimization

Source: Internet
Author: User

Javascript Optimization

1,

If (otest! = Undefined ){}
If (otest! = NULL ){}
If (otest! = False ){}
It is equivalent:
If (! Otest ){}

 

2. Reverse Loop
For (VAR I = 0; I <avalues. length; I ++ ){}
After replacement
For (VAR I = avalues. Length-1; I> = 0; I --){}
Reversing loops helps reduceAlgorithmComplexity. It uses a constant (0) as a loop control statement to reduce execution time.

3. Flip Loop
VaR I = 0;
While (I <avalues. Length ){
I ++;
}
After Optimization
VaR I = avalues. Length-1;
Do {
...
} While (-- I> = 0)

 

4. Expand the loop
VaR avalues = [, 7,...];
VaR isum = 0;
For (VAR I = 0; I <avalues. length; I ++ ){
Isum + = avalues [I];
}
After Optimization
VaR avalues = [, 7,...];
VaR isum = 0;
For (VAR I = 0; I <avalues. length; I ++ ){
Isum + = avalues [I ++];
Isum + = avalues [I ++];
Isum + = avalues [I ++];
Isum + = avalues [I ++];
Isum + = avalues [I ++];
}

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.