Skip to content

Instantly share code, notes, and snippets.

@h3nr1ke
Created December 18, 2018 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3nr1ke/e7824b952fd6644815380a8702ca798e to your computer and use it in GitHub Desktop.
Save h3nr1ke/e7824b952fd6644815380a8702ca798e to your computer and use it in GitHub Desktop.
const example ECMA6
/**
*
*/
const DELAY = 1000; // a constant MUST be initialized
setTimeout(function(){
console.log("After 1 second…");
}, DELAY);
DELAY = 2000; // error
//END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment