averainy's Blog
averainy
Links
Typescript
29
May 2024
How to Use Decorators to Print Log in Typescript
creat a decorator: function logDecorator(target: any, propertyName: string, descriptor: PropertyDescriptor) { const originalMethod = …
06
Dec 2023
Implementing String Format Method with TypeScript
Implementing String Format Method with TypeScript const format = (msg: string, parames?: Object): string => { if (!parames) { return msg; } …