basic.*=
Multiplies numeric expression and assigns to variable.
Syntax
variable *= num.expression
Description
an assignment operator which multiplies a given numeric expression and assigns it to the given variable.
Example
x *= 2
Multiplies the current value of 'x' by '2' and assigns the
result to 'x'. This is equivalent to: x = x * 2
See Also
User Comments
What do you think?
Share your experience or ask a question by using the form below.
Login to leave your comments.
