MULTIPLY Multiplies two numbers
MATH
MULTIPLY value1 value2
value1 - a value of NUMBER! type
value2 - a value of NUMBER! type
This method has no refinements
MULTIPLY multiplies two numbers. MULTIPLY is prefix notation. Meta also can handle the infix operator * for multiplication
MULTIPLY as prefix
product: MULTIPLY 2 3
with product of 6.
MULTIPLY as infix
product: 2 * 3
with also a result of 6