Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:00
Show Gist options
  • Select an option

  • Save Tombarr/535f15fb03fa1c8e92c903985a6319b3 to your computer and use it in GitHub Desktop.

Select an option

Save Tombarr/535f15fb03fa1c8e92c903985a6319b3 to your computer and use it in GitHub Desktop.
Example of variable assignment with var, let, and const
var twentyFour = 24;
let notTrue = false;
const API_KEY = 'abc123';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment