Advertisement
virtualideaz

Eval()function.html

Apr 4th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.     <title>eval(); function</title>
  4. </head>
  5. <body>
  6.     <p>this is an eval(); function</p>
  7.  
  8.     <script>
  9.        
  10.         eval("x=15; y=20; document.write(x*y)");
  11.         document.writeln("</br>");
  12.         document.writeln(eval("2*2"));
  13.        
  14.         eval("alert('Example of eval(); function')");
  15.        
  16.     </script>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement