Skip to content

Instantly share code, notes, and snippets.

@slim-python
Created July 31, 2020 18:01
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/3c4a882f3b2971b1704da012e3c9832f to your computer and use it in GitHub Desktop.
Save slim-python/3c4a882f3b2971b1704da012e3c9832f to your computer and use it in GitHub Desktop.
Difference between var, let and const keyword in Javascript
const password = '123456';
console.log(password);
//output: 123456
const apiKey = 45649465465;
console.log(apiKey);
//output: 45649465465
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment