Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack ExchangeStack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
Explore Stack InternalTo be, or not to be, that is the question
Translating it into code, we get
theQuestion = 2b || !2b
This returns true for any value of 2b, making the evaluation redundant. We can optimise it by removing the expression and substituting with the result.
theQuestion = true