const

Creates constant name with value of expression .

Syntax:
const name = expression {, ... }

Multiple constants can be declared on the same line. Constants are global and do not have to be declared with a shared statement.

Example:
'create a constant for PI
const PI = 3.14159271

see also common and shared commands