Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm eval () trong JavaScript

Hàm eval () chấp nhận một giá trị chuỗi chứa mã JavaScript. Hàm này thực thi mã đã cho và trả về kết quả của mã.

Cú pháp

Cú pháp của nó như sau

eval(32*45);

Ví dụ

<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>

Đầu ra

1440
Hello welcome to Tutorialspoint