gabrielaozegovic

P2

Dec 22nd, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.   <title>Tipovi podataka i varijable</title>
  4. </head>
  5.  
  6. <body>
  7.   <script type="text/javascript">
  8.     x = 1024;
  9.     document.write("<p>x = " + x + "</p>");
  10.  
  11.     x = "Ovo više nije broj";
  12.     document.write("<p>x = " + x + "</p>");
  13.   </script>
  14. </body>
  15. </html>
Add Comment
Please, Sign In to add comment