How would you change the background colour of a div with the id "colourme" to purple?
var div=document.getElementById("colourme"); div.style.backgroundColor = "purple"
GH
var div=document.getElementById("colourme"); div.style.backgroundColor = "purple"