Master typescript
1. Run typescript Webpack tsconfig 2. Type basic Primitive Types:– Number, String. Boolean– Null. Undefined, Void– Any, Never, Unknown Type inference=> TS tự động khai báo kiểu dữ liệu dựa trên value của biến.VD: let x = 5; => x có type number let variable;=> variable có type là any Function type sau parameter. 3. …