I need to know how to insert an asterix before an open bracket.
I am doing multiplication using javascript's eval, for example, eval("2(3)"), but I am getting the error "unexpected input value".
To solve this I need the following:
var str = "2(3)";
to be changed to this:
output = "2*(3)";