The arithmetic multiplication (*) operator returns the product of two operands.
If the first operand is a number, but the second is a string or a Boolean, the second operand is converted to a number.
Examples:
1 * 2
Result = 2
1 * "JUAN"
Result = 0
100 * "32JUAN"
Result = 3200
Copyright © 2010 CA. All rights reserved. | Email CA about this topic |