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">
<% } %>