When using Object.keys() on an object with Symbol keys, these keys will __________ be included in the returned array.
- always
- sometimes
- never
- based on Object type
When using Object.keys() on an object with Symbol keys, the Symbol keys will never be included in the returned array. This is because Symbol-keyed properties are not enumerable and are ignored by Object.keys().
Loading...
Related Quiz
- When a generator function is called, what is returned?
- When using relative paths in ES6 module imports, what does './' and '../' signify?
- What is the significance of weak references in WeakMap and WeakSet with regards to memory management?
- How does the behavior of 'this' in arrow functions affect their usage as methods in an object?
- To use destructuring in a for...of loop iterating over a Map, you would write for (const [key, ______] of map).