One JavaScript instance every day-use a function closure with a timer and a javascript Timer

Source: Internet
Author: User

One JavaScript instance every day-use a function closure with a timer and a javascript Timer

<! DOCTYPE html> 


What is the function of the javascript closure? Let's take an example to illustrate it. Thank you!

Simple concepts of closures:
A closure is a function that can read internal variables of other functions.
The two largest functions of function closures inside a function
Read the internal variables of the function.
The variable value is always in the memory.
Function ()
{
Var n = 999;
NAdd = function () {n + = 1}
Function B ()
{

Alert (n );

}
Return B;
}
Var result = ();
Result (); // 999.
NAdd ();
Result (); // 1000.

Javascript closures and variables

Return function (){
Return num;
};

This method is accessible.

Function (num) {'''} (I );
Remember this.

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.