
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Eval Function in JavaScript
The eval() function accepts a string value which holds JavaScript code. This function executes the given code and returns the result of the code.
Syntax
Its Syntax is as follows
eval(32*45);
Example
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> document.write(eval(32*45)); document.write("<br>"); document.write(eval(new String("Hello welcome to Tutorialspoint"))); </script> </body> </html>
Output
1440 Hello welcome to Tutorialspoint
Advertisements