Bridge

Script..::..IsNaN Method

The isNaN() function determines whether a value is NaN or not. Be careful, this function is broken. You may be interested in Number.isNaN() as defined in ECMAScript 6 or you can use typeof to determine if the value is Not-A-Number.

Namespace:  Bridge
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public static bool IsNaN(
	Object testValue
)
<TemplateAttribute> _
Public Shared Function IsNaN ( _
	testValue As Object _
) As Boolean
[TemplateAttribute]
public:
static bool^ IsNaN(
	Object^ testValue
)

Parameters

testValue
Type: System..::..Object
The value to be tested.

Return Value