Iterate through object properties with Symbol keys
You can iterate over all the keys of Object (String and Symbol keys) with
Reflect.ownKeys()
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/ownKeys
Object.values
only gets the values of all enumerable named (string-keys) properties.
You need to use Object.getOwnPropertySymbols
:
console.log(Object.getOwnPropertySymbols(obj).map(s => obj[s]))