JS Constants

Constants are block-scoped, much like variables defined using the let statement. The value of a constant cannot change through re-assignment, and it can't be redeclared. Constants can be declared with lower or uppercase but the convention is all uppercase.

const MY_FAV = 7;

const MY_NAME = "John Doe";

also works for objects

const MY_OBJECT = {'key': 'value'};