-
Notifications
You must be signed in to change notification settings - Fork 61
Closed
Description
for-own can be replaced with
Object.keys(obj).forEach(key => {
const value = obj[key];
console.log(key, value);
});
for (const [key, value] of Object.entries(obj)) {
console.log(key, value);
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels