Skip to content

Instantly share code, notes, and snippets.

@DennyScott
Created March 7, 2020 08:47
Show Gist options
  • Save DennyScott/058ad6ee8495f5b07f3f781d05996a93 to your computer and use it in GitHub Desktop.
Save DennyScott/058ad6ee8495f5b07f3f781d05996a93 to your computer and use it in GitHub Desktop.
function eq() {
let A = 'hi';
let B = A;
let A = 'bye'
}
// A === 'bye'
// B === 'hi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment