Why do I have to add var to define I Variable _ javascript in jsfor loop?

Source: Internet
Author: User
I know that some people (such as me) are not used to adding var when writing js for loops. This is of course permitted by syntax. For example.

The Code is as follows:


For (I = 0; I <10; I ++) {// It is not written as: var I = 0
Alert (I );
}


However, this is really not a good habit. Next I will explain why var must be added to the Js for loop, otherwise it will bring you annoying and difficult to query bugs from time to time.
For example, we want to implement the following functions: Output
10
20
30
40
50
60
70
80
90
100
Using the following code, WriteNumber starts from 1 to 10 cycles, and the TenTimes method is called each cycle to return 10 times the index value.

The Code 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.