base on the example calculator. function doX(a,b) { return a * b } e.g. expression is 1 x 2 i want to calculate 1 x 2 by call function doX(1,2) thanks.