Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="bg">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style>
- .info {
- font-family: Arial, sans-serif;
- color: rgb(204, 35, 35);
- }
- </style>
- </head>
- <body>
- <h3 class="info">Изчисляване на възраст</h3>
- <p class="info"></p>
- <script>
- var today = new Date();
- var person = {
- firstName: "Иван",
- lastName: "Спасов",
- birthday: new Date("07/16/1815"),
- pAge: function(){
- let age = today - this.birthday;
- return Math.floor(age/31557600000);
- }
- };
- var x = document.getElementsByClassName("info");
- x[1].innerHTML = person.firstName + " " + person.lastName + " е на " + person.pAge() + " години.";
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment