Question:What is the output of true && true || false?
A true B false C null D error
+ AnswerA
+ ExplanationThe logical AND is evaluated first, resulting in true, which then evaluates to true with the OR.
+ Report