0

I have a news page where i am looping through items in my database, i want the newest news post to display at the top the page, but as is newest entries are at the bottom of the list. How would i go about doing this.

<% if (!news.length) { %>
  <h1>No Current News</h1>
<% } %>
<% for (let newsPost of news) {%>
  <h3><%=newsPost.newsTitle%></h3>
  <hr class="rounded" id="titleDivider">
  <p><%=newsPost.newsText%></p>
  <hr class="rounded">
<% } %>
Nick Parsons
  • 38,409
  • 6
  • 31
  • 57
sgledhill
  • 15
  • 4
  • Sort your `news` array before you pass it into `.render()`: [How to sort an object array by date property?](https://stackoverflow.com/q/10123953) – Nick Parsons Feb 11 '22 at 11:03

0 Answers0