Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl-PL">
  3. <head>
  4. <meta charset="UTF-8">
  5. </head>
  6. <body>
  7. <script type="text/javascript">
  8. var Produkt = {
  9. name ,
  10. Cena: 12,
  11. Waga:3,
  12. print : function() {
  13. console.log("Zdrowe i tanie mniam ");
  14. }
  15. }
  16. Produkt.name= "Pomidor"
  17. document.write( Produkt.name)//Pomidor
  18.  
  19. document.write(" "+Produkt.Cena)
  20. document.write(" "+Produkt.Waga)
  21. Produkt.print(); //"Przed wyruszeniem w drogie należy zebrać drużyne"
  22. document.write(window.innerWidth) //Właściwość innerWidthobietku window
  23. document.write([1,2,3,4].lenght) //Właściwość lenght obiektu Array
  24. document.write(Math.max(1,2,3)) //Metoda max() obiektu Math
  25. window.alert("ok"); //metoda alert() obiektu window
  26. console.log("larem"); //metoda log() obiektu console
  27.  
  28.  
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement