Yields all entries of an object (including symbols).
const entries = objectEntries({ a: 1, b: 2 });entries.next(); // { value: ["a", 1], done: false }entries.next(); // { value: ["b", 2], done: false }entries.next(); // { value: undefined, done: true }
Iterable with entries of the given object (including symbols).
Object to get entries from.
Yields all entries of an object (including symbols).
Example
Returns
Iterable with entries of the given object (including symbols).