ECMAScript Comma Operators
- Previous Page Assignment Operators
- Next Page if Statement
Comma Operator
Comma operator can perform multiple operations in a single statement.
For example:
var iNum1 = 1, iNum = 2, iNum3 = 3;
Comma Operator is commonly used in variable declarations.
- Previous Page Assignment Operators
- Next Page if Statement