JavaScript Const

In JavaScript, The const keyword was introduced in ES6. Variables defined with const cannot be Redeclared or Reassigned.

Code :