✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What happens after executing this code?
const div = document.createElement('div');
const copy = div;
div.style.backgroundColor = 'red';
console.log(copy.style.backgroundColor);
]]>