Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

for loop in ejs

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

Looping through ejs data

<% articles.forEach((article)=> { %>
    <li>
        <h2>
          <%= article.title %>
        </h2>
        <p>
          <%= article.body %>
        </p>
    </li>
    <hr />
<% }) %>
Comment

PREVIOUS NEXT
Code Example
Javascript :: find intersection of multiple arrays in javascript 
Javascript :: jquery clear select 2 
Javascript :: css border jsx 
Javascript :: js get first space in string 
Javascript :: get input value on keypress jquery 
Javascript :: find label jquery 
Javascript :: validador de cep javascript 
Javascript :: get page resolution jquery 
Javascript :: jquery detect if element has overflow 
Javascript :: console log add new line 
Javascript :: js onclick open the phone application 
Javascript :: javascript detect enter press on input 
Javascript :: skip mongoose 
Javascript :: how to find parent table of tr in jquery 
Javascript :: javascript replace  
Javascript :: how to detect safari browser in javascript 
Javascript :: how to find index of max number in js 
Javascript :: angular button open file input 
Javascript :: How to make string shorter javascript 
Javascript :: react eslint error missing in props validation 
Javascript :: if string has number javascript 
Javascript :: detect os javascript 
Javascript :: add quotes to array values javascript 
Javascript :: get last day of month javascript 
Javascript :: how to call await outside async function in js 
Javascript :: apply back button to a react component 
Javascript :: get select option count using jquery 
Javascript :: read only javascript 
Javascript :: react hide source code 
Javascript :: regex expression dd/mm/yyyy javascript 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =