Оба эти утверждения работают:
<% if(currentUser.collegeLevel === "High School") { %>
<h1> They have a High School Degree </h1>
<% } %>
<% if(currentUser.collegeLevel === "Associates Degree") { %>
<h1> They have an Associates Degree </h1>
<% } %>
Это утверждение НЕ работает
<% if(currentUser.collegeLevel === "Associates Degree" || "High School") { %>
<h1> They have either a High school or Associates Degree</h1>
<% } %>
почемуИЛИ функция не работает?