Why is using the JavaScript eval() function a bad idea?
Answers
Answered by
0
- Security (but as long as you generate the string to be evaluated yourself, this might be a non-issue)
- Performance: until the code to be executed is unknown, it cannot be optimized.
Similar questions