Last active
January 28, 2022 10:29
-
-
Save LublubXT/5c4d7582d751fb90a98a8fcd1e8f2e88 to your computer and use it in GitHub Desktop.
Javascript Toggle Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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