Created
July 31, 2020 18:01
-
-
Save slim-python/3c4a882f3b2971b1704da012e3c9832f to your computer and use it in GitHub Desktop.
Difference between var, let and const keyword in Javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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