The pros and cons of JavaScript to create closures and the difference analysis _javascript skills

Source: Internet
Author: User

Usually javascript creates closures in two different ways.

Constructor method:

New function () { 
var variable ... 
} 

Inline execution Mode:

(function () { 
var variable ... 
}) (); 

What's the difference between JavaScript's internal operating mechanism? Which way to create it better? What is the advantage of it compared to closures created in other ways?

That's how I understand it:

Difference:

First: A child method can share a variable
Second: Internal child method Share variable

Comparison:

I think the inner Union is better;

Advantage:

The general inline creation is to request memory on demand, because only locally executed variables in memory, you can organize related and dependent code to minimize the risk of accidental interaction, construct all of the method execution variables to be stored in memory, which will affect the performance of the Web page, and recommend that you delete the variable before exiting

Of course, this is only my personal understanding, in fact, generally used closures need to be particularly in the IE kernel browser generated memory leaks, preferably after the use of variables to kill.

The above mentioned is the entire content of this article, I hope you can enjoy

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.