Created
August 20, 2017 02:27
-
-
Save ernes-to/7c35fa26f4ff5be2419391fc897a4ba3 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 quantity1 = 1; | |
| const quantity1 = 2; // Error: Duplicate declaration "quantity" | |
| const quantity2 = 5; | |
| quantity2 = 6; // Error: "quantity2" is read-only | |
| const quantity3; // Error: unexpected token ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment