Computer Science, asked by sankitas, 4 months ago


Select the correct order of precedence in the following(Highest to lowest)
O ll && ?:

O && ?: ||

O && || ?:

O ?: && ||

Answers

Answered by debanjanadey59
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 rmc51
55

Answer:

c -> && || ?: due to precedence and associativity table

Attachments:
Similar questions