I'm using a thrid party javascript library that uses eval() so when i call one of it's functions with the "1e-1" value as a parameter i get 0.1 returned. How can i escape this or avoid it from parsing the number?
A basic example would be:
console.log(eval("1e-1"));
I want the result to be 1e-1, but eval still needs to be there.
EDIT:
Okay Ignore the console example above THIS is the example it should work on:
There is no way around using this library. Sorry.
eval. eval = evil. – Jamiec Jan 31 at 15:031e-1in quotes? Then it would be treated as a string literal:eval("'1e-1'");– James Allardice Jan 31 at 15:05 . I tried all the obvious things. – capdragon Jan 31 at 15:07evalcontains a string literal. It won't do anything special with it. – James Allardice Jan 31 at 15:09