TypeScript
Good understanding of JavaScript/TypeScript (ES6+, async/await, modules)
A good understanding of modern JavaScript (ES6+) and TypeScript involves proficiency in key featu...
TypeScript Problem Solving Questions
console.clear(); function Foo() { this.bar = 10; } Foo.prototype.bar = 42; var foo = ne...
unknown vs any
In TypeScript, both unknown and any are special types that can represent any value, but they di...
Types of decorators in typescript
TypeScript offers several types of decorators that can be applied to different parts of a cla...
Why decorators in typescript ?
TypeScript decorators are a special kind of declaration that can be attached to class declarati...
syntax for inheritance in typescript
In TypeScript, class inheritance is achieved using the extends keyword, allowing a derived cl...
Angular typescript example
Angular is built with TypeScript, so all Angular examples inherently use TypeScript. A fundamenta...