How can I comment a JSP expression like: <%= map.size() %>
<%= map.size() %>
Is there something like <%= // map.size() %>?
<%= // map.size() %>?
One of:
In html
<!-- map.size here because --> <%= map.size() %>
theoretically the following should work, but i never used it this way.
<%= map.size() // map.size here because %>