What value is obtained when executing Object.values(myObject) in the following code?
const myObject = {
a: 1,
b: 2,
c: 3
};
What value is obtained when executing Object.values(myObject) in the following code?
const myObject = {
a: 1,
b: 2,
c: 3
};