1 min readApr 19, 2019
index.ejs will complain weather not defined, error not defined, until changed to below code then works
<% if (typeof(weather) !==”undefined”){ %>
<p><%= weather %></p>
<% } %>
<% if (typeof(error) !==”undefined”){ %>
<p><%= error %></p>
<% } %>