Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sienki-jenki/74b0c2404dc52367fd82ba0633413f82 to your computer and use it in GitHub Desktop.
Save sienki-jenki/74b0c2404dc52367fd82ba0633413f82 to your computer and use it in GitHub Desktop.
document.addEventListener('click', (e) => {
const color = getColor(e);
document.body.style.backgroundColor = color;
})
const getColor = (event) => {
const {clientX, clientY} = event;
if (clientX % 2 == 0) {
return clientY % 2 == 0 ? "red" : "green";
} else {
return clientY % 2 == 0 ? "green" : "blue";
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment