Author name: Abhishek Jain

Array Type in TypeScript

Array type in TypeScript are defined using <Type>[] where type stands for the data array is going to hold, it […]

Object Type in TypeScript

Object Type in TypeScript are defined using object keyword, creating interface or through type inference in TypeScript from the defined

Boolean Type In TypeScript

Boolean type in TypeScript is declared using boolean keyword and it can hold either true or false values. Declaring Boolean

String Type in TypeScript

String Type in TypeScript is defined using string keyword and declared using single quotes ( ' ), double quotes (

Number Type in TypeScript

Number type in TypeScript represents the numeric values similar to JavaScript. All the numbers are represented as floating point values

Type Inference in TypeScript

Type inference in TypeScript helps compiler to determine (infer) types without explicit declaration. Type inference allows compiler to infer types

Type Annotations in TypeScript

Learn about how Type Annotations in TypeScript works? Its advantages over JavaScript in improving code readability, maintainability and throwing compile

What is a Type in TypeScript?

Learn about the core concept of Type in TypeScript and how it refers to different variables, functions, objects, etc. Type

Introduction to TypeScript

This post introduces TypeScript, a strongly typed superset of JavaScript. Learn its key features and benefits for building scalable applications.

Scroll to Top