TypeScript – Types

The Types System represents the different types of values supported by the language. The Type System checks the validity of the supplied values before they are stored or manipulated by the program. This ensures that the code behaves as expected. The Type System further allows for richer code hinting and automated documentation too.

TypeScript provides data types as a part of its optional Type System. The data type classification is as given below โˆ’

Types System

The Any type

The any data type is the super type of all types in TypeScript. It denotes a dynamic type. Using the any type is equivalent to opting out of type checking for a variable.

Built-in types

The following table illustrates all the built-in types in TypeScript โˆ’

Data typeKeywordDescription
NumbernumberDouble precision 64-bit floating point values. It can be used to represent both, integers and fractions.
StringstringRepresents a sequence of Unicode characters
BooleanbooleanRepresents logical values, true and false
VoidvoidUsed on function return types to represent non-returning functions
NullnullRepresents an intentional absence of an object value.
UndefinedundefinedDenotes value given to all uninitialized variables

Note โˆ’ There is no integer type in TypeScript and JavaScript.

Null and undefined โ”€ Are they the same?

The null and the undefined datatypes are often a source of confusion. The null and undefined cannot be used to reference the data type of a variable. They can only be assigned as values to a variable.

However, null and undefined are not the same. A variable initialized with undefined means that the variable has no value or object assigned to it while null means that the variable has been set to an object whose value is undefined.

User-defined Types

User-defined types include Enumerations (enums), classes, interfaces, arrays, and tuple. These are discussed in detail in the later chapters.

Next Topic:-Click Here

This Post Has One Comment

Leave a Reply