What will be shown in the console when executing the following code?
const dictionary = { a: 1, b: 2, c: 3 };
delete dictionary.a;
console.log(Object.keys(dictionary));
What will be shown in the console when executing the following code?
const dictionary = { a: 1, b: 2, c: 3 };
delete dictionary.a;
console.log(Object.keys(dictionary));