Typescript Compilation Context The compilation context is a term for a grouping of the TypeScript files that will parse and analyze to…
typescript first program
-
-
TypeScript Installation In this section, we will learn how to install TypeScript, pre-requisites before installation of TypeScript, and in how many ways…
-
TypeScript Decorators A Decorator is a special kind of declaration that can be applied to classes, methods, accessor, property, or parameter. Decorators…
-
TypeScript Operators An Operator is a symbol which operates on a value or data. It represents a specific action on working with…
-
TypeScript Build Tools Build tools are programming utilities which help to automate the transformation and bundling of our source code into a…
-
TypeScript Indefinite Loops In a programming language, loops are the sequence of instructions which continually repeated until a specific condition is not…
-
TypeScript Module JavaScript has a concept of modules from ECMAScript 2015. TypeScript shares this concept of a module. A module is a…
-
Difference between TypeScript and Babel Babel Babel is a free and open-source JavaScript transpiler. A transpiler (source-to-source compilers) is a tool that…
-
Difference between Namespaces and Modules Namespace A namespace is a way that is used for logical grouping of functionalities. It allows us…
-
TypeScript Definite Loop In this loop, we know about the number of iterations before the execution of the block of statements. A…