Open In App

Aptitude | JavaScript Course Quiz 3 | Question 8

What will be the output of the following code?




<script>
document.write(( true + false ) > 2 + true );
</script>

(A) true
(B) false
(C) 1
(D) 0

Answer: (B)
Explanation: Here, True will change to 1, and False to 0.
Hence, (1+0)>(2+1) => 1>3 is False.
Quiz of this Question

Article Tags :