Skip to content

Instantly share code, notes, and snippets.

@RolandWarburton
Created October 15, 2020 12:46
Show Gist options
  • Save RolandWarburton/4b79d55d427315ebeac2cc4a435b4498 to your computer and use it in GitHub Desktop.
Save RolandWarburton/4b79d55d427315ebeac2cc4a435b4498 to your computer and use it in GitHub Desktop.
EJS for each json keys
<% Object.entries(record).forEach(([key, val]) => { %>
<li class="<%= key %>" id="<%= val %>"><strong><%= key %></strong>: <%= val %></li>
<% }); %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment