Creates a product operation on the given expressions.
For example, to create 7 * x:
product = new Times(7, 'x');
or:
product = new Number(7) * new Variable('x');
Source
Times(first, second): super(first, second);
Creates a product operation on the given expressions.
For example, to create 7 * x:
product = new Times(7, 'x');
or:
product = new Number(7) * new Variable('x');
Times(first, second): super(first, second);