Points covered
- What is TypeScript?
- Why TypeScript?
- Basic Types, Variable Declarations and Scope
- Const
- Functions & Function Parameters
- Rest Parameter and Spread Operator
What is TypeScript?
- TypeScript is an open-source programming language developed and maintained by Microsoft. It is strict syntactical superset of JavaScript.
- TypeScript is designed for the development of application and transform & compile to JavaScript
- TypeScript is an object-oriented based on OOPS concept with classes, interfaces and statically typed like Java or C#
- It was designed by Anders Hejlsberg at Microsoft, who was also designer of C#

Why TypeScript?
- JavaScript can be used to develop both Client side as well as Server-side applications. Angular, React.js, Backbone.js can be used for Client-side application. Node.js can be used for Server-side application
- JavaScript is most popular, used programming language with one drawback or limitation that is no type system. Other languages like Java or C# are well structured and strongly typed programming languages.
- Why we need a Type system? The answer is Type system increase the code quality, readability and maintainability. Most important feature is errors can be occurred and rectified at compile time not at run time
- The main reason to use TypeScript is to Scale the JavaScript, as without scaling we can not build large and complex applications with the big team working on the same code. That’s why Type system / TypeScript is more important while working on JavaScript projects.
Basic Types
Boolean
The type which holds true or false value is called Boolean.
- let isChecked:Boolean = false;
Number
This type holds the number which can be floating point number, Decimal, Hexadecimal or Octal.
- let a1:number = 45;//Number
- let a2:number = 0x31CF; //hexadecimal
- let a3:number = 0o311; //octal
- let a4:number = 110001; //binary
- If we log these variables then we will get below values
- console.log(a1); // 45
- console.log(a2); // 12751
- console.log(a3); // 201
- console.log(a4); // 49
String is primitive data type that is used to store text type of data, this data can be stored using single or double quotation mark.
- let man1:string = “Virat”
- let country1:string = “India”
- let man1details:string = man1 + “ plays for ” + country1
TypeScript version 1.4 included support for ES6 Template Strings. Template strings are used to embed expressions into the string.
- let man1details:string = ‘${man1} plays for ${country1}
This type is similar to C# Void, it is used where there is no Datatype. It represents the absence of any type at all. The most common use is the function that does not return anything. It is almost opposite of Any data type.
- let fun(a:number):void{} // This function accept number parameter but return nothing
This type is used to store any type of data. Many times, we don’t know the type of data coming from third-party API or user can enter anything, in such a situation we can use “any” data type.
- let variable1:any=4;
- variable1=”string data”;
- variable1 = true;
The array is a special type which can be used to store multiple data values in sequential manner using a special syntax. There are two ways to declare array as below.
- let colors:string[] = [‘Black’, ‘White’,’Orange’];
- let colors:Array<string> = [‘Black’, ‘White’,’Orange’];
It is an addition to the standard set of data types from JavaScript is the enum. Almost same as C#, it is a way of giving more friendly names to sets of numeric values.
- Enum Color{ Red, Green, Blue }
A tuple is a special type of array, we can say it heterogeneous array which can hold different type of data, however, it will be known type of data.
- let employees:[number, string] = [1, “Virat”];
object is a type which represents the non-primitive type.
- let x1:object = {prop:0};
- let x2:object = null;
The never type represents the type of variables that never occur. For instance, never is the return type for a function expression or an arrow function expression that always throws an exception or one that never returns.
- function abc():never{
- throw 20; // throwing a number exception
- while(true){ // control never returns
- }}
Variable Declarations
- JavaScript and TypeScript have the same rules of variable declarations. Variables can be declared using let, var and const.
- Variable which is declared within block inside function with var has function level scope rather than block level scope, because of typescript hosting in the JavaScript
- Let variable declaration allows to have block level scope to variables declared within the block inside function
- Block-scoped let variables cannot be read or written to before they are declared
- let variables cannot be re-declared
- Variables declared using ‘let’ minimize the possibilities or runtime errors, as the compiler give compile-time errors. This increases the code readability and maintainability
Const
- const Variables can be declared using const similar to var or let declarations. The const makes a variable a constant where its value cannot be changed. const variables have the same scoping rules as let variables.
- const variables must be declared and initialized in a single statement. Separate declaration and initialization is not supported
- const variables allow an object sub-properties to be changed but not the object structure
-
let vs const - We have two types of declarations with the similar scope when to use which one really depends.
-
Applying the principle of least privilege all declarations other than those you plan to modify should use const
Functions & Function Parameters
In TypeScript, functions can be of two types - named and anonymous.
- Named Functions
A named function is one where you declare and call a function by its given name. Functions can also include parameter types and return type. - Anonymous Function
An anonymous function is one which is defined as an expression. This expression is stored in a variable. So, the function itself does not have a name. These functions are invoked using the variable name that the function is stored in. Generally Anonymous function is used to pass as a parameter to another function - Arrow Function
Fat arrow notations are used for anonymous functions i.e. for function expressions. They are also called lambda functions in other languages.
(param1, param2, .... param n)=> expression - Function Overloading
TypeScript provides the concept of function overloading. You can have multiple functions with the same name but different parameter types and return type. However, the number of parameters should be the same.
Function overloading with different number of parameters and types with same name is not supported - Optional Parameters
TypeScript has an optional paramater functionality. The parameters that may or may not receive a value can be appended with a '?' to mark as optional. All optional parameters must foloow required parameters and should be at the end -
Default Parameters
TypeScript provides the option to add default values to parameters. So, if the user does not provide a value to an argument, TypeScript will initilize the parameter with the default value. Default parameters have the same behaviour as optional parameters. If a value is not passed for the default parameter in a function call, the defauld parameter must foloow the required parameters in the function signature.
Rest Parameter
When the number of parameters that a function will receive is not known or can vary, we can use rest parameter. In JavaScript, this is achieved with the "arguments" variable. However, with TypeScript, we can use the rest parameter denoted by ellipsis'...'
- We can pass zero or more arguments to the rest parameter. The compiler will create an array of arguments with the rest parameter name provided by us.
- Rest parameters must come last in the function definition, otherwise the TypeScript compiler will show an error
- let Greet = (greeting: string, ...names: string[])=>{
- return greeting + " " + names.join(",") + "!";
- }
- Greet("Hello", "Virat","Kohli");
- // returns "Hello Virat, Kohli!"
- Greet("Hello");
- // returns "Hello !"
Spread Operator
- With TypeScript, we can use the spread operator denoted by ellipsis '...' same as Rest Parameter.
- So how do you differentiate, it's a Rest Parameter or Spread Operator?
- When ... ellipsis is on the left hand side of the assignemnt operator then it is Rest Operator.
- When ... ellipsis is on the right hand side of the assignment operator then it is Spread Operator.
- let arr:number[] = [10,20,30];
- console.log(arr); //[10,20,30] //an array
- console.log(...arr); // 10,20,30 // Individual elements
These are some basic concepts in TypeScript. the beginner can start with these concepts so that their concepts get clear.
__Happy Coding__

Join the conversation! Your thoughts help the community grow.