Skip to content

Instantly share code, notes, and snippets.

@alic-xc
Last active January 12, 2023 20:34
Show Gist options
  • Save alic-xc/d788805e3c69f76a88891f0548eac39f to your computer and use it in GitHub Desktop.
Save alic-xc/d788805e3c69f76a88891f0548eac39f to your computer and use it in GitHub Desktop.
Javascript Variables
let username = "olamilekan"
const isCompleted = true
.....
.....
.....
.....
username = 110034564 //Variable can be updated since we are not using the const keyword to declare
isCompleted = "not ok" // Raise error because `isCompleted` is a constant
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment