What value is obtained when executing Object.entries(myObject).length in the following code?
const myObject = {
key1: 'value1',
key2: 'value2',
key3: 'value3'
};
What value is obtained when executing Object.entries(myObject).length in the following code?
const myObject = {
key1: 'value1',
key2: 'value2',
key3: 'value3'
};