6 posts tagged with "typescript"
- typescriptFebruary 5, 2022 / 5 min read
Advanced usage of TypeScript(一)
This article introduces the advanced uses of TypeScript. it introduces TypeScript from the perspectives of types, operators, generics. - typescriptFebruary 4, 2022 / 4 min read
Advanced usage of TypeScript(二)
This article introduces the advanced uses of TypeScript. it introduces TypeScript from the perspectives of generics. - typescriptFebruary 3, 2022 / 3 min read
Advanced usage of TypeScript(三)
This article introduces the advanced uses of TypeScript. it introduces TypeScript from the perspectives of generics helper - typescriptNovember 9, 2021 / 4 min read
Typescript best practices (一)
As we all know, JavaScript is a very flexible programming language. This flexibility makes it one of the most popular programming languages on the one hand, but also leads to variable code quality, high maintenance costs, and runtime errors. - typescriptNovember 8, 2021 / 3 min read
Typescript best practices (二)
In the previous article Typescript best practices (一), we learned about some of the typescript best practices. let's see more about them. - typescriptMay 15, 2021 / 2 min read
numeric and string enums enumerations in TypeScript
Enums are one of the few features TypeScript has which is not a type-level extension of JavaScript.