I’ll keep updating the article whenever I learn other tips that deserve to be in the top 10. Feel free to let me feedback. I’d love to learn from you.
Ready? let’s start
Using an already existing UI library is more comfortable, faster, and consistent. You don’t need to write extra code for a component that already exists, works, and is well maintained.
any
in your typescript codeThe compiler treats any
as “please start type checking for this thing.”. Typing is the cheapest and faster way to check errors in your code. With any
, it’s challenging to see what’s going wrong, and in terms of performance, it will cost you a lot. However, this exists for some exceptional cases where the use of any
will be understood. Those cases are:
#web-development #typescript #angular