Show minor edits - Show changes to markup
x: any variable type \\
x: any variable type
x: any variable type\\
x: any variable type \\
x: any variable type //y: any variable type or constant
x: any variable type\\ y: any variable type or constant
\\y: any variable type or constant
//y: any variable type or constant
x: any variable type \\y: any variable type or constant
x: any variable type \\y: any variable type or constant
x: any variable type\\ y: any variable type or constant
x: any variable type \\y: any variable type or constant
x: any variable type
x: any variable type\\
x *= 10; // x now contains 30
x *= 10; // x now contains 30
Perform a mathematical operation on a variable with another constant or variable. The += (et al) operators are just a convenient shorthand for the expanded syntax below.
Perform a mathematical operation on a variable with another constant or variable. The += (et al) operators are just a convenient shorthand for the expanded syntax, listed below.
x+=2; // equivalent to the expression x = x + 2; x-=2; // equivalent to the expression x = x - 1; x*=2; // equivalent to the expression x = x * 2; x/=2; // equivalent to the expression x = x / 2;
x += y; // equivalent to the expression x = x + y; x -= y; // equivalent to the expression x = x - y; x *= y; // equivalent to the expression x = x * y; x /= y; // equivalent to the expression x = x / y;
x: any variable type
x: any variable type y: any variable type or constant
x++; // x now contains 3 x--; // x contains 2 again@]
x += 4; // x now contains 6 x -= 3; // x now contains 3 x *= 10; // x now contains 30 x /= 2; // x now contains 15 @]
Perform a mathematical operation on a variable with another constant or variable. The += (et al) operators are just a convenient shorthand for the expanded syntax below.
x+=2; // equivalent to the expression x = x + 2; x-=2; // equivalent to the expression x = x - 1; x*=2; // equivalent to the expression x = x * 2; x/=2; // equivalent to the expression x = x / 2;
x: any variable type
x = 2; x++; // x now contains 3 x--; // x contains 2 again