Q. What will be the output of the following PHP code?
Code:
<?php echo var_dump(is_nan(10)); ?>
β
Correct Answer: (A)
bool(false)
<?php echo var_dump(is_nan(10)); ?>
You must be Logged in to update hint/solution