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: 25-Jun-2020

240 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements