Class JSObject

  • All Implemented Interfaces:
    JSObjectFunctions
    Direct Known Subclasses:
    JS5Object

    public abstract class JSObject
    extends java.lang.Object
    implements JSObjectFunctions
    Base JavaScript Object
    Since:
    Standard ECMA-262 3rd. Edition
    • Field Detail

      • prototype

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

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

      • JSObject

        public JSObject()
        Object Object()

        Creates a new object instance

        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      • JSObject

        public JSObject​(JSObject value)
        Object Object(value)

        Parameters:
        value - optional argument specifies a primitive JavaScript value - a number, boolean etc..
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.