jsconstant.md - brainchildservices/curriculum GitHub Wiki

Slide 1

JavaScript Const

const keyword is used to declare variable globally.

  • Variables defined with const cannot be Redeclared.
  • Variables defined with const cannot be Reassigned.
  • Variables defined with const have Block Scope.