JS: List Properties (to array)

By Xah Lee. Date: . Last updated: .

Object properties to array

Methodinclude non-Enumerable keysinclude Symbol keyinclude string key
Object.keys no no ✅
Object.values no no ✅
Object.entries no no ✅
Object.getOwnPropertyNames ✅ no ✅
Object.getOwnPropertySymbols ✅ ✅ no
Reflect.ownKeys ✅ ✅ ✅

Array-like object to array

Iterable object to array

for-in loop

syntaxuse proto chaininclude non-Enumerable keysinclude Symbol Keyinclude string key
for-in loop ✅nono✅