Constants are like variables except that once they are defined they cannot be changed or undefined.
To create a constant, use the define() function.
Syntax: define(name, value, case-insensitive)
Constants are global and can be used across the entire script.
Edit the code below and click Run to see the result live.