Getting Started with TypeScript
Last Updated :
19 Mar, 2024
TypeScript is an open-source programming language developed by Microsoft that extends JavaScript by adding optional static typing to the language. It aims to make JavaScript development more scalable and maintainable, especially for large-scale projects. TypeScript code is transpiled into JavaScript code, making it compatible with all modern browsers and JavaScript frameworks.
TypeScript Basics
The any type in TypeScript allows variables to hold values of any data type. It is often used when the type of a variable is not known during development or when interfacing with JavaScript libraries that have dynamic typing.
Syntax:
let value: any;
Union types allow a variable to hold values of multiple types. For example, number | string denotes a variable that can be either a number or a string.
Syntax:
let Variable_name: data_type1 | data_type2
Example:
function display(value: number | string) {
if (typeof value === "number") {
console.log("The value is a number:", value);
} else {
console.log("The value is a string:", value.toUpperCase());
}
}
display(22); // Output: The value is a number: 22
display("gfg"); // Output: The value is a string: GFG
Type aliases:
Type aliases allow developers to create custom names for existing types, making complex types more readable and easier to maintain.
Syntax:
type type_name = create_your_type;
Example:
type Point = { x: number; y: number };
const point: Point = { x: 10, y: 20 };
console.log(point); // Output: { x: 10, y: 20 }
Interfaces define the structure of an object in TypeScript. They can include properties, methods, and optional members. Interfaces are commonly used for defining contracts within the codebase
Syntax:
interface Name_of_interface{
key : value,
key : value
}
Example:
interface Person {
name: string;
age: number;
}
function greet(person: Person): string {
return `Hello, ${person.name}!`;
}
const user: Person = { name: "GFG", age: 22 };
console.log(greet(user)); // Output: Hello, GFG!
Enums (short for enumerations) allow developers to define a set of named constants. Enums are useful for representing a fixed set of values within the codebase.
Syntax:
enum nafe_of_enum{
value1,
value2,
.
.
.
value_n
}
Example:
enum DayOfWeek {
Sunday,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday
}
function getDayName(day: DayOfWeek): string {
return DayOfWeek[day];
}
console.log(getDayName(DayOfWeek.Monday)); // Output: Monday
Example 1: This example shows the use of Type Guards with Arrays.
JavaScript
// Define a type guard function
function isNumberArray(arr: any[]):
arr is number[] {
return arr.every(item => typeof item === "number");
}
// Use the type guard in a conditional statement
function sumOrJoin(arr: number[] |
string[]): number | string {
if (isNumberArray(arr)) {
return arr.reduce((acc, curr) =>
acc + curr, 0);
} else {
return arr.join(", ");
}
}
console.log(sumOrJoin([1, 2, 3]));
console.log(sumOrJoin(["hello", "world"]));
Output:
6
hello, world
Example 2: This example shows the use of Type Guards with Objects.
JavaScript
// Define a type guard function
function isPerson(obj: any): obj is
{ name: string; age: number } {
return typeof obj === "object" &&
"name" in obj && "age" in obj;
}
// Use the type guard in a conditional statement
function greet(obj: {
name: string;
age: number
} | string): string {
if (isPerson(obj)) {
return `Hello, ${obj.name}!`;
} else {
return `Hello, ${obj}!`;
}
}
console.log(greet({ name: "Gfg", age: 22 }));
console.log(greet("world"));
Output:
Hello, Gfg!
Hello, world!
Steps to Run the Code
- Step1: Install Node.js from official website.
- Step2: Install TypeScript globally by running npm install -g typescript in your terminal.
- Step3: Copy the code examples into separate TypeScript files (.ts extension).
- Step4: Compile the TypeScript files into JavaScript using the TypeScript compiler (tsc) by running tsc filename.ts.
- Step5: Run the generated JavaScript files using Node.js or include them in an HTML file for browser execution.
Advantages of Using TypeScript
- Static Typing: TypeScript provides type safety, catching errors at compile time and improving code quality.
- Enhanced Tooling: TypeScript offers better IDE support with features like code completion, refactoring tools and inline documentation.
- Code Maintainability: By enforcing type safety and providing clearer interfaces, TypeScript enhances code maintainability and readability.
How to Use TypeScript in a Project?
- Create a new TypeScript file with the .ts extension.
- Write your TypeScript code as usual.
- TypeScript allows you to gradually adopt static typing by adding type annotations where needed.
- Compile the TypeScript code into JavaScript using the TypeScript compiler (tsc).
- Include the generated JavaScript files in your project as you would with any other JavaScript files.
Similar Reads
Getting Started with TypeScript
TypeScript is an open-source programming language developed by Microsoft that extends JavaScript by adding optional static typing to the language. It aims to make JavaScript development more scalable and maintainable, especially for large-scale projects. TypeScript code is transpiled into JavaScript
4 min read
Get and Set in TypeScript
In TypeScript, you can use the get and set keywords to define getter and setter methods within a class. These methods allow you to encapsulate the access and modification of class properties, providing a way to control and customize the behavior. In this article, we are going to learn to get and set
3 min read
Node.js with TypeScript
If you're immersed in the world of Node.js development, you're likely acquainted with the hurdles of handling and expanding a substantial codebase. A viable solution to tackle this is leveraging TypeScript, a statically-typed superset of JavaScript. TypeScript enriches the language with optional typ
6 min read
What are TypeScript Interfaces?
TypeScript interfaces define the structure of objects by specifying property types and method signatures, ensuring consistent shapes and enhancing code clarity. Allow for optional and read-only properties for flexibility and immutability.Enable interface inheritance to create reusable and extendable
4 min read
What is Type Assertion in TypeScript ?
Type Assertion is another way of telling the TypeScript compiler about the type of value a variable is going to store. You can assert the type of the variable by using type assertion. It is simply another way of explicitly typing the variables. It can override the automatic or default type assertion
1 min read
What is Type Narrowing in TypeScript ?
Type narrowing is a process of refining or narrowing down the type using certain conditions with a particular code block. It will help developers as well as TypeScript itself to infer the more accurate types within the code and work with them in a clean and strict code environment. The type narrowin
1 min read
Tic Tac Toe Game Using Typescript
In this tutorial, We are going to create an interactive tic-tac-toe game in which two users can play against each other and the winner will be displayed to the winning user. What Weâre Going to CreateWeâll build a Tic Tac Toe game focusing on event handling, DOM manipulation, and core game logic con
6 min read
What is TypeScript ?
TypeScript is a statically typed superset of JavaScript that was designed to enhance the development of large-scale applications by introducing static typing and adding additional features to the JavaScript language. TypeScript allows developers to write code that closely resembles JavaScript while
1 min read
What are the Modules in Typescript ?
Modules in TypeScript allow you to organize code into reusable, manageable, and logical units by encapsulating functionalities into separate files. They help avoid global namespace pollution by providing scoped declarations.Modules can be imported and exported, enabling code reuse and better maintai
4 min read
What is Type Erasure in TypeScript?
TypeScript is a very mighty superset of JavaScript, which adds static typing to the language and allows developers to catch errors early on as well as write more maintainable code. This being said a TypeScript type system erases type information at compile time (or during the compilation), a phenome
4 min read