a=5; var b=(A==5)?"Equal":"Not Equal"; Will display_______.a
Answers
Answered by
0
Answer:
search in google
Explanation:
Answered by
1
a=5; var b=(A==5)?"Equal":"Not Equal"; Will display Equal
The ternary operator checks if a == 5 which it is, so it sets the value of b to "Equal"
Similar questions