If-Else Example 3

number monthNumber = month(currentDate()); string monthName = formatDate(currentDate(), "MMMM"); if(startsWith(monthName, "J") == true) { runnerLog("Example 3: This month " + monthName + " starts with the letter 'J'."); }