So, a junior programmer on my team today wrote the following piece of code:
if(status === (\"incomplete\" || \"unknown\"))
Which is obvious
("incomplete" || "unknown") will return "incomplete" which is than compared to status.
("incomplete" || "unknown")
"incomplete"
status