So for example, if in a jsp we put:
<c:choose>
<c:when test="${missingAttribute}">
...do something
</c:when>
<c:otherwise>
...something else
</c:otherwise>
</c:choose>
If 'missingAttribute' does not exist, will the otherwise block always be executed? In other words, do missing attributes evaluate to false?