glissario / bootcamp-schedule

bootcamp progress
0 stars 0 forks source link

First JavaScript Web App: Toggle Background Color #68

Closed codingbootcampseu closed 3 years ago

codingbootcampseu commented 3 years ago

Hints

Change background color

const color = "hotpink";
const header = document.querySelector("header");
header.style.backgroundColor = color;

Get current background color of element

const header = document.querySelector("header");
const currentBackgroundColor = header.style.backgroundColor.toLowerCase();

Example Solution and Comparison