Const Statement

  1. Const name = expression

Assigns a symbolic name to a constant value.

A constant must be defined before it is used.

The definition of a Const in Cypress Enable outside the procedure or at the module level is a global. If you use the Global Const and the Const outside the module level, the syntax is identical to how they are shown in the example below.

A type declaration character may be used. However, if none is used, Enable automatically assigns one of the following data types to the constant:

More:

Example - Const Statement