Guest User

Untitled

a guest
May 20th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     <script type="text/javascript">
  2.         var x = prompt("Enter a number");
  3.         var y = prompt("Enter another number");
  4.         document.write("Hello, world!");
  5.         function thebutton(a,b)
  6.         {
  7.             var ans = a+b;
  8.             document.write(ans);
  9.         }
  10.         thebutton(x,y);
  11.     </script>
Add Comment
Please, Sign In to add comment