0
what is 'this keyword representing in the following code'?
function changeColor() { const color = document.getElementById("colorPicker").value; this.style.background = color; }
3 Antworten
0
thank you so much Jay W!
function changeColor() { const color = document.getElementById("colorPicker").value; this.style.background = color; }