ИЛИ состояние с EJS? - PullRequest
       13

ИЛИ состояние с EJS?

0 голосов
/ 03 февраля 2019

Оба эти утверждения работают:

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

  <%  } %>

почемуИЛИ функция не работает?

1 Ответ

0 голосов
/ 03 февраля 2019

Это не работает, потому что ИЛИ не сравнивается ни с чем другим.

Это должно выглядеть так:

if(currentUser.collegeLevel === "Associates Degree" || currentUser.collegeLevel === "High School")

...