What will be printed to the console when executing the following code?
const animal = {
species: 'cat',
sound: 'meow'
};
console.log(Object.entries(animal).length);
What will be printed to the console when executing the following code?
const animal = {
species: 'cat',
sound: 'meow'
};
console.log(Object.entries(animal).length);