Guest User

Untitled

a guest
Feb 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Nizovi</title>
  7. </head>
  8. <body>
  9. <h1>NIZOVI</h1>
  10. <script id="jsbin-javascript">
  11. var niz=[1,2,3,4,5,6,7,8,9];
  12. /*Čita niz*/
  13. niz.forEach(function(element){
  14. console.log(element);
  15. });
  16. </script>
  17.  
  18. <script id="jsbin-source-html" type="text/html"><!DOCTYPE html>
  19. <html>
  20. <head>
  21. <meta charset="utf-8">
  22. <meta name="viewport" content="width=device-width">
  23. <title>Nizovi</title>
  24. </head>
  25. <body>
  26. <h1>NIZOVI</h1>
  27. </body>
  28. </html> </script>
  29.  
  30.  
  31. <script id="jsbin-source-javascript" type="text/javascript">var niz=[1,2,3,4,5,6,7,8,9];
  32. /*Čita niz*/
  33. niz.forEach(function(element){
  34. console.log(element);
  35. });</script></body>
  36. </html>
Add Comment
Please, Sign In to add comment