---
title: "If-Else Example 3"
canonical: "https://support.appfire.com/space/PSCONF/15305780/If-Else%20Example%203"
format: markdown
---
> Macro (aura-html)

> Macro (excerpt)
> 
> ```
> 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'.");
> }
> ```