I have this list:
<c:let>
a = list('a','b','c')
</c:let>
How can i modify each elements for that list?
I need something like:
for (int i = 0; i < a.length; i++) {
a[i] += 'd';
}
I looked in the tutorial, but the examples show only how to retrieve a list element, not how to modify it.
So, how can i modify list elements, iterating on it?
Thanks!