Answer Posted / negi
The eval() function evaluates a string and executes it as if
it was script code.
In this example we use eval() on some strings and see what
it returns:
<script type="text/javascript">
eval("x=10;y=20;document.write(x*y)");
document.write("<br />");
document.write(eval("2+2"));
document.write("<br />");
var x=10;
document.write(eval(x+17));
document.write("<br />");
</script>
The output of the code above will be:
200
4
27
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are different types of inheritence? Which inheritance is followed in javascript.
What is a null variable in javascript?
What does 3 dots mean in javascript?
What is dhtml in javascript?
Explain the process of document loading.
what is the difference between wrappers and primitives es: diff between int i=200 in primitives and integeri = new integer(54)
java pgm for reads a file(text file) and removes all the spaces then the text and write this back into the same file. e.g: (Input) _______ chennai is fourth biggest city in india. (output) _______ chennaiisfourthbiggestcityinindia.
Which javascript framework is in demand?
Which is faster jquery or javascript?
How do I run code in browser console?
How do you name a variable in javascript?
What are anonymous functions in Javascript?
Is a relation always a function?
Which built-in method returns the characters in a string beginning at the specified location?
What is the use of a weakset object in javascript?