Number Type Extensions
Extends the base ECMAScript (JavaScript) Number functionality with static and instance methods.
Namespace: None. This type extension is global and not part of a namespace.
Inherits: None
var numberVar = Number.parseInvariant("4");
Member Extensions
Name |
Description |
---|---|
Formats a number by using the invariant culture. |
|
Formats a number by using the current culture. |
|
Returns a numeric value from a string representation of a number. |
|
Creates a number from a locale-specific string. |
Remarks
Number extensions are part of the Microsoft AJAX Library. They add functionality to the JavaScript Number object and provide members that are more familiar to .NET programmers.
For more information about the JavaScript object that this type extends and about its constructor, see JScript Number Object in the Language Reference.
Example
The following example shows how to call the ASP.NET AJAX parseInvariant extension function to create a number from the string representation of a number.