Valeri173

IP 8

Dec 20th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="bg">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. .info {
  8. font-family: Arial, sans-serif;
  9. color: rgb(204, 35, 35);
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h3 class="info">Изчисляване на възраст</h3>
  15. <p class="info"></p>
  16. <script>
  17. var today = new Date();
  18.  
  19. var person = {
  20. firstName: "Иван",
  21. lastName: "Спасов",
  22. birthday: new Date("07/16/1815"),
  23. pAge: function(){
  24. let age = today - this.birthday;
  25. return Math.floor(age/31557600000);
  26. }
  27. };
  28.  
  29. var x = document.getElementsByClassName("info");
  30. x[1].innerHTML = person.firstName + " " + person.lastName + " е на " + person.pAge() + " години.";
  31. </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment