Skip to content

Instantly share code, notes, and snippets.

@zinevych
Created May 13, 2019 12:38
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 zinevych/4140ad7226eea2670d9b8d7e700cc1c3 to your computer and use it in GitHub Desktop.
Save zinevych/4140ad7226eea2670d9b8d7e700cc1c3 to your computer and use it in GitHub Desktop.
let a = 1;
let b = 2;
let c = a + b;
console.log('c = ', c);
//Output: c = 3
a = 2;
console.log('c = ', c);
//Output: c = 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment