Skip to content

Instantly share code, notes, and snippets.

@sampathsl
Created December 13, 2015 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 sampathsl/77e9b0d2700e7a122687 to your computer and use it in GitHub Desktop.
Save sampathsl/77e9b0d2700e7a122687 to your computer and use it in GitHub Desktop.
ES6 - Const keyword
const PI = Math.PI;
console.log(PI);
//Can not assign value - TypeError: invalid assignment to const 'PI'
//PI = '1';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment