TypeScript

My TypeScript notes.

1 Jan 0001

Quick Notes

📝 Quick Notes # 🔢 Number # Number is the set of all numbers: integers, ……

1 Jan 0001

Experiments

Experiments # Assigning object as key in object # let i = { 10: ……

1 Jan 0001

Arrays

Arrays in ts # let a = [1, 2, 3]; // number[] var b = ['a', ……

1 Jan 0001

Empty Object Literal

Empty Object Type # // empty object literal (object litral => ……

1 Jan 0001

Enums

Enums # There are two kinds of enums: enums that map from strings to ……

1 Jan 0001

Extend

Extend of types and interfaces # type are extended using union ……

1 Jan 0001

Function Bing Call Apply

Functions Bind,Call and Apply # Overview # call(), apply(), and bind() ……

1 Jan 0001

Null, Undefined, Void and Never

Null, Undefined, Void and Never # Null and Undefined # undefined type ……

1 Jan 0001

Overloaded Function Types

Overloaded Function Types # Signature call is syntax in ts to ……

1 Jan 0001

String

Strings in js/ts # String defination # When String() is called as a ……

1 Jan 0001

Unkown

When and where to use unkown ? # intro # For the few cases where you ……