What will be printed to the console when executing the following code?
const book = {
title: '1984',
author: 'George Orwell'
};
console.log(Object.keys(book).join(', '));
What will be printed to the console when executing the following code?
const book = {
title: '1984',
author: 'George Orwell'
};
console.log(Object.keys(book).join(', '));