I want to change the body's bg to white, when it is set to "sun" (light mode) and change back to moon (also change the background to black with it)
function dwmode(){
var body = document.querySelector('body')
document.getElementById('dWmode').innerHTML = '<i class="fas fa-sun"></i>';
if(innerHTML == '<i class="fas fa-sun"></i>'){
body.style.background = 'white'
}
}