You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parenthesis will be confusing if there are extra parenthesis surrounding it. Parenthesis could simply be used for grouping compound statements like if (true==true) || true { and the character count could also be reduced.
Before:
<%= if (true) { %><!-- some html here --><%}%>
After:
<%= if true { %><!-- some html here --><%}%>
The text was updated successfully, but these errors were encountered:
The parenthesis will be confusing if there are extra parenthesis surrounding it. Parenthesis could simply be used for grouping compound statements like
if (true==true) || true {
and the character count could also be reduced.Before:
After:
The text was updated successfully, but these errors were encountered: