This is simple beginner question - let suposse we have variable status:
var status = 'unknown';
and we want to grab error if:
if (status !== 'good' && status !== 'bad'){// error}
I wanted to shorten it to:
if (status !== 'good' && 'bad'){}
but it's not working? Is this even possible?