Multiple choice What will the following code return: Boolean(10 > 9)? NaN false true Reveal answer Fill a bubble to check yourself C Correct answer Explanation The expression 10 > 9 evaluates to the boolean value true. The Boolean() function converts this result into its boolean representation.