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

 Live Demo

<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
Updated on: 2020-06-25T13:06:30+05:30

314 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements