📜  ejs 中的 for 循环 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:10.639000             🧑  作者: Mango

代码示例1
<% for(let count = 0; count <= 100; count++ ){ %>
    
<%= count %> <%# will output the numbers 1-100 %> <% } %>