TypeScript
My TypeScript notes.
1 Jan 0001
📝 Quick Notes # 🔢 Number # Number is the set of all numbers: integers, ……
1 Jan 0001
Experiments # Assigning object as key in object # let i = { 10: ……
1 Jan 0001
Arrays in ts # let a = [1, 2, 3]; // number[] var b = ['a', ……
1 Jan 0001
Empty Object Type # // empty object literal (object litral => ……
1 Jan 0001
Enums # There are two kinds of enums: enums that map from strings to ……
1 Jan 0001
Extend of types and interfaces # type are extended using union ……
1 Jan 0001
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 # Signature call is syntax in ts to ……
1 Jan 0001
Strings in js/ts # String defination # When String() is called as a ……
1 Jan 0001
When and where to use unkown ? # intro # For the few cases where you ……