+ 1
Is it possible to concat an operator in js and it would still perform the operator?
example : fucntion myfunc (a," ",c) { var d = a + b + c Return d } Document.write(myfunc(3,+,4)) to get 7
1 Answer
0
You can use eval() to convert strings into code. It is not save though.