What will be the result of the following code?
const object = { key1: 'value1' };
console.log(Object.entries(object).flat().join(', '));
What will be the result of the following code?
const object = { key1: 'value1' };
console.log(Object.entries(object).flat().join(', '));