UNPKG

288 BJavaScriptView Raw
1export var isNaNDocs = {
2 name: 'isNaN',
3 category: 'Utils',
4 syntax: ['isNaN(x)'],
5 description: 'Test whether a value is NaN (not a number)',
6 examples: ['isNaN(2)', 'isNaN(0 / 0)', 'isNaN(NaN)', 'isNaN(Infinity)'],
7 seealso: ['isNegative', 'isNumeric', 'isPositive', 'isZero']
8};
\No newline at end of file