i am new to java script and i need some help with following code sample.
basically i want to know how can i access the values in the following array
$('#sheet').sheet({
title: "${title}",
buildSheet: true,
workbook: "${sheet}"
});
this workbook : "${sheet}" contains 2d array.
actually i have forloop to print workbook : ${sheet} content
<c:forEach var="sheet" items="${workbook}">
<table>
<c:forEach var="row" items="${sheet}">
<tr>
<c:forEach var="cell" items="${row}">
<td>test test</td>
</c:forEach>
</tr>
</c:forEach>
</table>
</c:forEach>
basically i want to loop through values inside workbook variable
i really appreciate any help with that. thanks for looking into this