Classify the statements about Object.values and Object.entries. Which are true? Select all that apply.
Object.values includes values inherited from a prototype
Object.entries produces key-value pairs for own enumerable string-keyed properties✓Correct answer
Both methods include properties keyed by Symbols
Object.values produces the values of own enumerable string-keyed properties✓Correct answer
Explanation
Both methods operate on the object's own enumerable string-keyed properties. Object.values collects their values, while Object.entries represents each corresponding string key and value together; inherited and Symbol-keyed data are not included.