pour une boucle dans EJS

<% for(let count = 0; count <= 100; count++ ){ %>
	<br><%= count %>
    <%#  will output the numbers 1-100 %>
<% } %>
Jonathan Felicity