functions.ejs 183 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 <h1>Users</h1> <% function user(user) { %> <li><strong><%= user.name %></strong> is a <%= user.age %> year old <%= user.species %>.</li> <% } %> <ul> <% users.map(user) %> </ul>