Liya Zhu - Assignment 3 - Constant

Example

The value of π is around 3.14
Hello!

Explain

Similar but very different from variables.Used to store information or value.

Unlike variables, they cannot be changed.Constants are created using the define() function rather than the assignment = operator.

The syntax is define('NAME', value).Once you define a constant, you are stuck with it.