What is the purpose of the function eval?
What is the purpose of the function eval? Correct Answer Executing string as JavaScript
eval is a JavaScript native function that accepts a string and executes the string as JavaScript. The argument of the eval() function is a string. It basically fires up the interpreter and allows the passed-in string to be parsed and interpreted at the time of invocation.