JavaScript - Calculate Age Base On Birthday

In this tutorial we will create a Calculate Age Base On Birthday using JavaScript. This code will calculate a person age by inputting a person birth date in the textbox. The code itself use a new Date() function to compute the age by getting the difference between the today and the inputted date. This code is free to use, you can modify it as your own, We will be using JavaScript as a server-side scripting language because It allows greater control of your web page behavior than HTML alone. It is embedded in HTML that responsible to allow user to interact with the computer .

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="contriner-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Calculate Age Base On Birthday</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-3"></div>
  17. <div class="col-md-6">
  18. <div class="form-inline">
  19. <input type="date" id="birthday"/>
  20. <button class="btn btn-primary" onclick="getAge();">Calculate</button>
  21. <h2>Your age is: <span id="result" class="text-primary"></span></h2>
  22. </div>
  23. </div>
  24. </div>
  25. <script src="js/script.js"></script>
  26. </body>
  27. </html>

Creating the Script

This code contains the script of the application. This code will calculate a person age automatically. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. function getAge() {
  2. var date = document.getElementById('birthday').value;
  3.  
  4. if(date === ""){
  5. alert("Please complete the required field!");
  6. }else{
  7. var today = new Date();
  8. var birthday = new Date(date);
  9. var year = 0;
  10. if (today.getMonth() < birthday.getMonth()) {
  11. year = 1;
  12. } else if ((today.getMonth() == birthday.getMonth()) && today.getDate() < birthday.getDate()) {
  13. year = 1;
  14. }
  15. var age = today.getFullYear() - birthday.getFullYear() - year;
  16.  
  17. if(age < 0){
  18. age = 0;
  19. }
  20. document.getElementById('result').innerHTML = age;
  21. }
  22. }
There you have it we successfully created a Calculate Age Base On Birthday using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment