Skip to content

Instantly share code, notes, and snippets.

@emrekasg
Created April 2, 2020 17:08
Show Gist options
  • Save emrekasg/08b6dcd6bbaa1cfff9fc3ec74bd938e4 to your computer and use it in GitHub Desktop.
Save emrekasg/08b6dcd6bbaa1cfff9fc3ec74bd938e4 to your computer and use it in GitHub Desktop.
Const for Medium
// 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