Microsoft® JScript ++ and -- Operators |
Language Reference Version 1 |
Used to increment or decrement a variable by one.
result = ++variable
result = --variable
result = variable++
result = variable--
++variable
--variable
variable++
variable--
The syntax of the ++ and -- operators has these parts:
Part Description result Any variable. variable Any variable.
The increment and decrement operators are used as a shortcut to modify the value stored in a variable. The value of an expression containing one of these operators depends on whether the operator comes before or after the variable:j is assigned the value 3, as the increment occurs before the expression is evaluated. Contrast the following example:var j, k k = 2 j = ++kHere, j is assigned the value 2, as the increment occurs after the expression is evaluated.var j, k k = 2 j = k++
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js647.htm, 3KB, , updated: 1997/9/30 03:44, local time: 2024/10/31 23:31,
3.141.45.29:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/language/jscript/js647.htm"> ++ and -- Operators</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.