I'm reading through some javascript code for knockout.js. Could someone explain what is going on here? What does {{each seats}} signify in this case?
<script type="text/x-jquery-tmpl" id="reservationTemplate">
{{each seats}}
<tr>
<td>${name || 'Anonymous'}</td>
<td>${meal().mealName}</td>
<td>${meal().price}</td>
</tr>
{{/each}}
</script>
forloop to me... – Chris Francis Dec 19 '11 at 11:40