Multiple choice Which of the following functions is used to determine if the argument is a number? parseInt isNan isFinite eval isDigit Reveal answer Fill a bubble to check yourself B Correct answer Explanation The isNaN function evaluates an argument to determine if it is NaN (not a number). The syntax of isNaN is - isNan(value_to_check);