Skip to content

Instantly share code, notes, and snippets.

@Nathan-Nesbitt
Created May 7, 2020 18:19
Show Gist options
  • Save Nathan-Nesbitt/092844792a46ae99f5746f684ed3dd03 to your computer and use it in GitHub Desktop.
Save Nathan-Nesbitt/092844792a46ae99f5746f684ed3dd03 to your computer and use it in GitHub Desktop.
Constant Variables Example
// Creates a constant variable //
const myConstant = 10;
// Tries to reassign the variable but will
// throw TypeError: invalid assignment to const `myVariable'
myConstant = 11;
// Prints 10 //
console.log(myConstant);
@Nathan-Nesbitt
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment