Select the correct order of precedence in the following(Highest to lowest)
O ll && ?:
O && ?: ||
O && || ?:
O ?: && ||
Answers
Answered by
14
Answer:
There are three logical operators in JavaScript: || (OR), && (AND), ! (NOT). Although they are called “logical”, they can be applied to values of any type, not only boolean. Their result can also be of any type.
Explanation:
Answered by
55
Answer:
c -> && || ?: due to precedence and associativity table
Attachments:
Similar questions