In JavaScript, isNaN() is a function that stands for 'is Not-a-Number'.
It is used to determine whether a value is a numeric value or not. The function returns 'true', if the value is not a valid number (such as a string containing non-numeric characters) and false if the value can be interpreted as a valid number.