const
Description
The const of Declarations for JS declares a block-scoped constant.
It cannot be redeclared or reassigned.
Syntax
const name1 = value1[, name2 = value2[, nameN = valueN]]
The const of Declarations for JS declares a block-scoped constant.
It cannot be redeclared or reassigned.
const name1 = value1[, name2 = value2[, nameN = valueN]]