πŸ“Š JavaScript
Q. What is the output?
Code:
console.log(3 > 2 > 1);
  • (A) true
  • (B) false
  • (C) undefined
  • (D) NaN
πŸ’¬ Discuss
βœ… Correct Answer: (B) false

Explanation: 3 > 2 is true (1), then 1 > 1 is false.

Explanation by: Chandani
3 > 2 is true (1), then 1 > 1 is false.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
93
Total Visits
πŸ“½οΈ
11 mo ago
Published
πŸŽ–οΈ
Chandani
Publisher
πŸ“ˆ
83%
Success Rate