✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What happens after executing this code?
const div = document.createElement('div');
const copy = div;
div.style.backgroundColor = 'red';
console.log(copy.style.backgroundColor);
]]>