What is the result of Object.values(object1) in the following code?
const object1 = {
a: 'one',
b: 'two',
c: 'three'
};
What is the result of Object.values(object1) in the following code?
const object1 = {
a: 'one',
b: 'two',
c: 'three'
};