A
Q. What will be the output of the following code snippet?
Code:
var a = Math.max() < Math.min();
var b = Math.max() > Math.min();
print(a);
print(b);
var b = Math.max() > Math.min();
print(a);
print(b);
- Correct Answer - Option(A)
- Views: 14
- Filed under category JavaScript
- Hashtags:
Discusssion
Login to discuss.