Skip to content

Instantly share code, notes, and snippets.

@DennyScott
Created March 7, 2020 08:46
Show Gist options
  • Save DennyScott/79e8b269acd634066c67cbfe3ee25a7f to your computer and use it in GitHub Desktop.
Save DennyScott/79e8b269acd634066c67cbfe3ee25a7f to your computer and use it in GitHub Desktop.
function ValueEq() {
let A = 'hello';
const B = 'goodbye';
const C = 'hello';
A = 'hi';
}
// A === 'hi'
// B === 'goodbye'
// C === 'hello'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment