Using JavaScript to write some code. What I need to do is check to see if todays date falls in between two other dates, all without using the year. Here is what I have, but I know I am doing a bunch wrong. lol. Appreciate any help. I see a solution for PHP, but I don't know if that translates to JavaScript: Check if todays date is between two other dates
var CurrentDate = Utilities.formatDate(new Date(), Session.getScriptTimeZone(), "MMM d");
if (CurrentDate > "Jun 21" && CurrentDate < "Dec 25") {
do stuff}