Created
December 24, 2020 23:32
-
-
Save zachgoll/2ba6dbcbbe658038a8ae48711f8cce93 to your computer and use it in GitHub Desktop.
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
| const variable1 = 10; | |
| const variable2 = variable1; | |
| const variable3 = "Zach"; | |
| const variable4 = { | |
| variableType: "object", | |
| variableValue: "some value", | |
| }; | |
| const variable5 = (function () { | |
| return "Hello, my name is "; | |
| })(); | |
| const variable6 = variable5 + variable3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment