Typescript Variable

A Typescript variable is a storage for the data, where programs can store value or information. We must give a name to the variable. We can then refer the variable in another part of the program. In this article, we learn how to declare a variable. Also, learn about the rules for naming the variable.

Declaring the variable

We need to declare the variables before using them. We use let, var or const keyword to declare the variable.

The following example declares the variable using the keyword var. You can as well use let & const here

We name the variable as the message. The name message uniquely identifies this variable. Hence, It is also called an Identifier. It should follow the identifier naming rules mentioned in the next tutorial.

We are declaring that the message will store only the string. We do that using : type annotation syntax i.e :[Type], where Type is the name of the Typescript data type. The type can be number, string, boolean, etc.

We are storing the literal “Hello World” by using the = operator. It is an Assignment operator. It Assigns values from the right side operand (i.e =) to the left side operand.

Declaring the Variable in Typescript
Declaring the Variable in Typescript

Naming the Variable

We must follow these rules when naming the variable. For a more detailed description please read identifiers & keywords in typescript.

  • Variable name must be unique within the scope.
  • The first letter of a variable should be an upper case letter, Lower case letter, underscore or a dollar sign
  • Subsequent letters of a variable can have upper case letter, Lower case letter, underscore, dollar sign, or a numeric digit
  • They cannot be keywords.
  • Identifiers are case-sensitive.
  • They cannot contain spaces.

Variable Declaration syntax

We can declare the variables in four different ways.

  1. both type and initial value
  2. only the type
  3. only the initial value
  4. without type and initial value

Both type and Initial value

Here, we define both the type and initial value of the variable.

Example:

Output

Only the type

Only the type is declared. Variable will get the value undefined. The const is not allowed here

Example:

output

only the initial value

Here, the variables are defined without type, but with an initial value. The Typescript infers the type from the value assigned to it.

In the example below, we have not declared the type but initialized message & num variable using a value. Typescript infers the type of the variable from the value assigned to it. Hence the variable message is created as string variable and num as number

Example :

output

Without type and initial value

Here neither the type nor the initial value is given. In this case, the compiler infers the type as any. The const keyword not allowed here.

Example :

output

Summary

We use let or var keyword to declare a variable. The variables are annotated using the colon :, which is optional. We can optionally initialize the variable using the assignment operator. If you do not annotate a variable or did not initialize with a value, then typescript will infer it as type any.

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top