I am sending an arrayList from a java file to a .jsp file
In order to receive that array I used the following code
var words =
[
<c:forEach begin="0" items="${requestScope.WordList}" var = "word">
word,
</c:forEach>
];
however it is not working .. any Idea of how to do it ?