Is there a built in feature in JSTL to output separators while doing foreach?
The task is to output separators (like commas) after each iteration except the last one
You may use `varStatus' attribute in EL,
${foo}${!loopStatus.last?',':''}`