Skip to content

Instantly share code, notes, and snippets.

@zinevych
Created May 13, 2019 12:56
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/069b52f17115572cece435a840a8de43 to your computer and use it in GitHub Desktop.
Save zinevych/069b52f17115572cece435a840a8de43 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 = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment