Phiên bản đầy đủ: jsB@nk » Thời gian » Ngày sinh » Ngày bạn sinh
URL: https://www.javascriptbank.com/the-day-you-born.html
Là ngày thứ mấy? Nếu không nhớ (mà thường thì không biết) thì hãy sử dụng đoạn mã JavaScript này; chỉ cần nhập vào ngày tháng năm sinh theo chuẩn Châu Âu (m/d/y), hiệu ứng sẽ cho bạn biết đó là ngày thứ mấy trong tuần.
Phiên bản đầy đủ: jsB@nk » Thời gian » Ngày sinh » Ngày bạn sinh
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>