Created
April 2, 2020 17:08
-
-
Save emrekasg/08b6dcd6bbaa1cfff9fc3ec74bd938e4 to your computer and use it in GitHub Desktop.
Const for Medium
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
// with normal variable | |
var login = true | |
login = false; | |
console.log(login) // it returns false | |
// with const variable | |
const login = true | |
login = false | |
// it returns error named Assigment to content variable. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment