Files
medusa-store/www/apps/docs/content/references/js-client/interfaces/internal-8.Object.md
github-actions[bot] daea35fe73 chore(docs): Generated JS Client Reference (#5334)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action

Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
2023-10-10 17:47:07 +00:00

2.2 KiB

displayed_sidebar
displayed_sidebar
jsClientSidebar

Interface: Object

internal.Object

Properties

constructor

constructor: Function

The initial value of Object.prototype.constructor is the standard built-in Object constructor.

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:125

Methods

hasOwnProperty

hasOwnProperty(v): boolean

Determines whether an object has a property with the specified name.

Parameters

Name Type Description
v PropertyKey A property name.

Returns

boolean

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:140


isPrototypeOf

isPrototypeOf(v): boolean

Determines whether an object exists in another object's prototype chain.

Parameters

Name Type Description
v Object Another object whose prototype chain is to be checked.

Returns

boolean

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:146


propertyIsEnumerable

propertyIsEnumerable(v): boolean

Determines whether a specified property is enumerable.

Parameters

Name Type Description
v PropertyKey A property name.

Returns

boolean

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:152


toLocaleString

toLocaleString(): string

Returns a date converted to a string using the current locale.

Returns

string

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:131


toString

toString(): string

Returns a string representation of an object.

Returns

string

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:128


valueOf

valueOf(): Object

Returns the primitive value of the specified object.

Returns

Object

Defined in

docs-util/node_modules/typescript/lib/lib.es5.d.ts:134