JavaScript comma-expression

Source: Internet
Author: User

The general form of a comma expression is: expression 1, expression 2, expression 3 ... Expression n
The solution to the comma expression is to evaluate the value of the expression 1, then the value of the expression 2, ... Always evaluates to the value of the expression N. The value of the last entire comma expression is the value of the expression N.
Look at the following examples:

 x=8*2,x*4 /*   Span style= "color: #008000;" >*/  (x  =8*2,x*4), x*2 /*   */  x  = (z=5,5 * *) /*   The entire expression is an assignment expression with a value of 10,z of 5  */  x  =z=5,5*2 /*   */ 


< Span style= "color: #454545; font-family:tahoma,helvetica,arial; font-size:14px; line-height:21px; " such as: printf ("%d,%d,%d", X, Y, z); The ########################################################### operator causes the expression on either side of it to be executed from left to right, and to get the value of the right-hand expression. , the most common purpose of an operator is to use it in an increment expression for a for loop. For example: &NBSP;

 for (i = 0; i < ten; i++, J + +) {    = i + j;}

each time the end of the loop is passed, the For statement allows only a single expression to be executed. , an operator is used to allow multiple expressions to be treated as a single expression, thereby circumventing the restriction.

JavaScript comma-expression

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.