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