I'm currently working with my web based system using nodejs and html.
Is there any alternative way to loop html elements without using forEach?
I'm thinking about like this(this is just an example):
<% for(var ctr=0; ctr<arrayname.length;ctr++){ %>`
`<input type="text">`
`<%}%>`
I hope someone will answer my question. :)