If you try to perform an operation that is not allowed for numbers (e.g. dividing a string by a number), the result will be NaN, which stands for "Not a Number".
For example:
letnum='foo';letresult=num/2;console.log(result);// Outputs NaN
Let's look at an example of Numbers in the context of a Sports games