Skip to content

Instantly share code, notes, and snippets.

@slim-python
Created July 31, 2020 18:03
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 slim-python/70746a22def9bcdd35810963f52fac18 to your computer and use it in GitHub Desktop.
Save slim-python/70746a22def9bcdd35810963f52fac18 to your computer and use it in GitHub Desktop.
Difference between var, let and const keyword in Javascript
var income = 550;
console.log(income);
//output : 550
var income = 560;
console.log(income);
//output : 560
var income = income + 1;
console.log(income);
//output : 561
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment