This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Not an organized list. Dates from https://www.calendarpedia.com/ | |
| function Holiday() { | |
| if (month == 10 && day == 24 && year == 2022) { | |
| return " Happy Thanksgiving!"; | |
| } else if (month == 10 && day == 23 && year == 2023) { | |
| return " Happy Thanksgiving!"; | |
| } else if (month == 10 && day == 28 && year == 2024) { | |
| return " Happy Thanksgiving!"; |