Most people define a variable in a programming language as a placeholder for something else. The variable is a bucket that stuff goes into, comes out of, gets changed and gets removed. However, ...
In the bad old days, I only used constants as a way to assign names to values. Things like this, for example: Private Const DaysInWeek As Integer = 7 However, these days most of my variables are ...