Full version: jsB@nk » Time » Birthday » The day you born
URL: https://www.javascriptbank.com/the-day-you-born.html
What is that day? If you do not remember (but almost do not know) then use this JavaScript code; only enter date, month, year you born, this code will find out what day of the week. Only a few code lines, very easy and simple to use and customize.
Full version: jsB@nk » Time » Birthday » The day you born
URL: https://www.javascriptbank.com/the-day-you-born.html
<script type="text/javascript" name="birthDay.js">// Created by: Doc JavaScript :: http://www.webreference.com/js/tips/991021.htmlfunction findDay() { var ar = new Array(); ar[0] = "Sunday"; ar[1] = "Monday"; ar[2] = "Tuesday"; ar[3] = "Wednesday"; ar[4] = "Thursday"; ar[5] = "Friday"; ar[6] = "Saturday"; var yourDay =prompt("Enter your Birthday Using the Format Below", "January 3, 1978") var birthDay = new Date(yourDay); var day = birthDay.getDay(); alert("You were born on " + ar[day]);}</script>
<form style="text-align: center;"> <input type="button" value="Find out what day of the week you were born on!" onclick="findDay()"></form>