Struggling to retrieve data from app.js through ejs and encountering an error.
Pursuing a degree in Computer Science
<%- include('header'); -%>
<h1><%= foo%></h1>
<p class = "home-content">It is a fact that readers are distracted by the readable content of a page when looking at its layout. Lorem Ipsum has a more-or-less normal distribution of letters, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text.</p>
<% for(var i = 0 ;i< posts.length;i++)%>
<%console.log(posts[i].title);%>// ENCOUNTERING AN ERROR IN THIS LINE THAT PREVENTS POSTING ON HOME.EJS
<%}%>
<%- include('footer'); -%>
Seeking assistance to rectify this error