Object
admin/discounts.internal.Object
Properties
constructor
FunctionRequiredThe initial value of Object.prototype.constructor is the standard built-in Object constructor.
Methods
hasOwnProperty
hasOwnProperty(v
): boolean
Determines whether an object has a property with the specified name.
Parameters
A property name.
Returns
boolean
boolean
booleanisPrototypeOf
isPrototypeOf(v
): boolean
Determines whether an object exists in another object's prototype chain.
Parameters
Another object whose prototype chain is to be checked.
Returns
boolean
boolean
booleanpropertyIsEnumerable
propertyIsEnumerable(v
): boolean
Determines whether a specified property is enumerable.
Parameters
A property name.
Returns
boolean
boolean
booleantoLocaleString
toLocaleString(): string
Returns a date converted to a string using the current locale.
Returns
string
string
stringtoString
toString(): string
Returns a string representation of an object.
Returns
string
string
stringvalueOf
valueOf(): Object
Returns the primitive value of the specified object.
Returns
Object
() => any(value: any) => anyRequiredWas this section helpful?