Created
August 20, 2017 02:27
-
-
Save ernes-to/7c35fa26f4ff5be2419391fc897a4ba3 to your computer and use it in GitHub Desktop.
Revisions
-
VisionPoint created this gist
Aug 20, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ 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 ;