Created
January 19, 2019 23:00
-
-
Save Tombarr/535f15fb03fa1c8e92c903985a6319b3 to your computer and use it in GitHub Desktop.
Example of variable assignment with var, let, and const
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
| 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