I originally had a route in node.js that stated this:
If the req.url === something or something or something or something, do this, else, do that.
The problem is that the else statement never got executed even though the if condition was not met. Only the if statement executes no matter what
I have broken down my route to bare minimum trying to figure out the problem. I simplified it to this:
app.get('/test', function(req,res) {
var category = 'stupid3';
if(category === 'stupid' || 'stupid2') {
res.end('yup');
} else {
res.end('nope');
}
});
What am I doing wrong?
Why wont the else statement execute?