JavaScript - объект числа
В Numberобъект представляет собой числовую дату, целые числа или числа с плавающей запятой. В общем, вам не нужно беспокоиться оNumber объекты, потому что браузер автоматически преобразует числовые литералы в экземпляры числового класса.
Синтаксис
Синтаксис для создания number объект выглядит следующим образом -
var val = new Number(number);
Вместо числа, если вы предоставите какой-либо аргумент, не являющийся числом, тогда аргумент не может быть преобразован в число, он возвращает NaN (Не-число).
Число Свойства
Вот список каждой собственности и их описание.
Sr.No. | Описание недвижимости |
---|---|
1 | MAX_VALUE Максимально возможное значение, которое может иметь число в JavaScript: 1,7976931348623157E + 308 |
2 | MIN_VALUE Наименьшее возможное значение числа в JavaScript может быть 5E-324 |
3 | NaN Равно значению, которое не является числом. |
4 | NEGATIVE_INFINITY Значение меньше MIN_VALUE. |
5 | POSITIVE_INFINITY Значение больше MAX_VALUE |
6 | опытный образец Статическое свойство объекта Number. Используйте свойство prototype, чтобы назначить новые свойства и методы объекту Number в текущем документе. |
7 | constructor Returns the function that created this object's instance. By default this is the Number object. |
In the following sections, we will take a few examples to demonstrate the properties of Number.
Number Methods
The Number object contains only the default methods that are a part of every object's definition.
Sr.No. | Method & Description |
---|---|
1 | toExponential() Forces a number to display in exponential notation, even if the number is in the range in which JavaScript normally uses standard notation. |
2 | toFixed() Formats a number with a specific number of digits to the right of the decimal. |
3 | toLocaleString() Returns a string value version of the current number in a format that may vary according to a browser's local settings. |
4 | toPrecision() Defines how many total digits (including digits to the left and right of the decimal) to display of a number. |
5 | toString() Returns the string representation of the number's value. |
6 | valueOf() Returns the number's value. |
In the following sections, we will have a few examples to explain the methods of Number.