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

> Macro (excerpt)
> 
> ```
> number monthNumber = month(currentDate());
> string monthName = formatDate(currentDate(), "MMMM");
> 
> if(monthNumber > 12) {
>     runnerLog("Example 2: Time no longer exists :(");
> }
> ```