================= objectKeys ================= .. list-table:: :widths: auto :stub-columns: 1 * - Source - `objectKeys `__ Transforms an object into an array, to easily *ngFor repeat for an object ------- Example ------- - typescript .. code-block:: typescript this.listObj = { a: { name: 'a123' }, b: { name: 'b123' }, c: { name: 'c123' } } ::
{{ key }}
**will render: a, b, c**