Creates a subtaction operation on the given expressions.
For example, to create 5 - x:
subtraction = new Minus(5, 'x');
or:
subtraction = new Number(5) - new Variable('x');
Source
Minus(first, second): super(first, second);
Creates a subtaction operation on the given expressions.
For example, to create 5 - x:
subtraction = new Minus(5, 'x');
or:
subtraction = new Number(5) - new Variable('x');
Minus(first, second): super(first, second);