Class JSNumber

    • Field Detail

      • prototype

        public JSNumber prototype
        property prototype
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
      • constructor

        protected JSFunction constructor
        property constructor
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Function
      • MIN_VALUE

        public static JSNumber MIN_VALUE
        property MIN_VALUE The smallest representable number.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
      • MAX_VALUE

        public static JSNumber MAX_VALUE
        property MAX_VALUE The largest representable number.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
      • NaN

        public static JSNumber NaN
        property NaN Not-a-number value.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
      • NEGATIVE_INFINITY

        public static JSNumber NEGATIVE_INFINITY
        property NEGATIVE_INFINITY Negative infinite value.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
      • POSITIVE_INFINITY

        public static JSNumber POSITIVE_INFINITY
        property POSITIVE_INFINITY Infinite value.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
    • Constructor Detail

      • JSNumber

        public JSNumber​(JSObject value)
        Object Number(value)
        Parameters:
        value - The numeric value of the Number object being created or a value to be converted to a number.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.