Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const changeColor = e => {
  2. const lightOrange = "rgb(221, 238, 255)"
  3. const lightBlue = "rgb(255, 238, 221)"
  4. const {style} = document.body
  5. style.backgroundColor = style.backgroundColor === lightOrange
  6. ? lightBlue
  7. : lightOrange
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement