TypeScript Namespaces The namespace is a way which is used for logical grouping of functionalities. It encapsulates the features and objects that…
Typescript Tutorial
-
-
Differences between TypeScript and CoffeeScript CoffeeScript CoffeeScript is a dynamic, imperative, scripting, multi-paradigm, prototype-based, imperative, and functional programming language, which is used…
-
Difference between let and var keyword var keyword The var statement is used to declare a variable in JavaScript. A variable declared…
-
TypeScript Duck-Typing According to TypeScript, Duck-Typing is a method/rule used to check the type compatibility for more complex variable types. TypeScript uses…
-
TypeScript Numbers Like JavaScript, all the numbers in TypeScript are stored as floating-point values. These numeric values are treated like a number…
-
Difference between TypeScript and Dart Dart Dart is an open-source, general-purpose, class-based, object-oriented language with C-style syntax which can optionally transcompile into…
-
Difference between Null and Undefined Null Null is used to represent an intentional absence of value. It represents a variable whose value…
-
TypeScript Enums Enums stands for Enumerations. Enums are a new data type supported in TypeScript. It is used to define the set…
-
Difference between TypeScript and ES6 TypeScript TypeScript is an open-source pure object-oriented programing language. It is a strongly typed superset of JavaScript…
-
TypeScript Access Modifiers Like other programming languages, Typescript allows us to use access modifiers at the class level. It gives direct access…