Gentlemen, I need to know which operator to use in Javascript's c: if when I want to make a decision between them, for example, I need a background of a Div to turn red when it is between date x and y, is the "ENTRE" operator, here is a snippet of my code.
<c:if test ="${realizadoVN dfim <> dtini && ${realizadoVN <metaVN}">
<div class="container">
<div class="marca" ><h1>VN</h1></div>
<div class="meta"style="font-size: 25px;">META: <fmt:formatNumber value = "${VN.rows[0].META}" type="currency"/></div>
<div class="rel" style= "background-color:red; color:white; font-size:30px;">ACUMULADO <br><br><fmt:formatNumber value = "${realizadoVN}" type="currency"/><br><h1> <c:out value="${VN.rows[0].ACUMULADO}"/>%</h1></br></div>
</div>
</c:if>