Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ObjectConstructor

Index

Methods

entries

  • entries<T>(o: object | ArrayLike<T>): [string, T][]
  • entries(o: __type): [string, any][]
  • Returns an array of key/values of the enumerable properties of an object

    Type parameters

    • T

    Parameters

    • o: object | ArrayLike<T>

      Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

    Returns [string, T][]

  • Returns an array of key/values of the enumerable properties of an object

    Parameters

    • o: __type

      Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

    Returns [string, any][]

getOwnPropertyDescriptors

  • getOwnPropertyDescriptors<T>(o: T): object & object
  • Returns an object containing all own property descriptors of an object

    Type parameters

    • T

    Parameters

    • o: T

      Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

    Returns object & object

values

  • values<T>(o: object | ArrayLike<T>): T[]
  • values(o: __type): any[]
  • Returns an array of values of the enumerable properties of an object

    Type parameters

    • T

    Parameters

    • o: object | ArrayLike<T>

      Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

    Returns T[]

  • Returns an array of values of the enumerable properties of an object

    Parameters

    • o: __type

      Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

    Returns any[]

Generated using TypeDoc