variablelike
Variablelike is an informal term used in computer science to describe constructs that function similarly to a variable. In general, a variablelike entity denotes a storage location that can hold a value, and that may be assigned to and read from during computation. Because it is informal, the exact scope and characteristics of what is variablelike vary by language and context.
In programming language design, the distinction often centers on assignability and mutability. Variablelike entities include traditional
Other domains share the intuition as well. In spreadsheets, each cell is a variablelike container that stores
See also: variable, l-value, assignment, mutable, reference, storage location.