- Checks if
3 >= 2, which istrue - Stops and returns
"ay"
Resulting call stack
g("ay", 3) returns "ay"
g("oday", 2) "oday" + ____
g("today", 1) "today" + ____
3 >= 2, which is true"ay"g("ay", 3) returns "ay"
g("oday", 2) "oday" + ____
g("today", 1) "today" + ____