Open In App

Aptitude | JavaScript Course Quiz 3 | Question 9

What will be the output of the following code?




<script>
document.write(Number('1') - 1 == 0);
</script>

(A) true
(B) false
(C) 1
(D) None of the above

Answer: (A)
Explanation: You’re casting the string 1 as a number, and subtracting it from the number 1. This equals 0.
Quiz of this Question

Article Tags :