Skip to content

Instantly share code, notes, and snippets.

@LublubXT
Last active January 28, 2022 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LublubXT/5c4d7582d751fb90a98a8fcd1e8f2e88 to your computer and use it in GitHub Desktop.
Save LublubXT/5c4d7582d751fb90a98a8fcd1e8f2e88 to your computer and use it in GitHub Desktop.
Javascript Toggle Function
on = false;
function toggle(from, to) {
if (on == false) {
from
on = true;
}
if (on == true) {
to
on = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment