Last active
September 4, 2020 16:07
-
-
Save TylerPachal/d6711787293c1907ff1d20290f86b81d to your computer and use it in GitHub Desktop.
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
let flag = true; | |
if (foo === bar) { | |
flag = false; | |
console.log(flag); // false | |
} | |
console.log(flag); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment