Skip to content

Instantly share code, notes, and snippets.

@ernes-to
Created August 20, 2017 02:27
Show Gist options
  • Select an option

  • Save ernes-to/7c35fa26f4ff5be2419391fc897a4ba3 to your computer and use it in GitHub Desktop.

Select an option

Save ernes-to/7c35fa26f4ff5be2419391fc897a4ba3 to your computer and use it in GitHub Desktop.
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