Language - (Variable | Field)

Card Puncher Data Processing

About

Variables in a computer language are used to store data information. A variable is a piece of storage containing a value.

Variables created by declarations are identified:

All these variable expressions (x,x[i] or x.f) read the value of a variable, except when they appear on the left-hand side of an assignment, in which case a new value is assigned to the variable.

A variable is considered as the runtime counterpart of a identifier token and therefore are used interchangeably.

Not every value has an address, but every variable does.

Variables are sometimes described as addressable values.

The purpose of variables is to manage:

Declaration

A variable declaration (aka create) creates a variable of a particular type, attaches a name to it, and sets its initial value.

Example:

  • Javascript with they keyword var
var myName;

Properties

Variable have the following properties:

Type

Symbolic container

A variable is called a symbolic container (javascript) when the value in this container can vary over time as needed.

Expression

Variable expressions:

  • x,
  • x[i]
  • x.f

Documentation / Reference





Discover More
Card Puncher Data Processing
(Data) Type - (Datatype|Type of data)

Variables, parameters, and function may be typed (static typing) and return values that are typed (as do a database column). The type of a variable or expression defines the characteristics of the values...
Card Puncher Data Processing
Language - Literal Value

A literal value stands alone without being stored in a variable. Values that are included directly in the source code are called literals string literals are surrounded by double quotes (“...”) or...



Share this page:
Follow us:
Task Runner