Best Practices in Angular Application Development
3 min readJul 11, 2021
--
In this article, I’m going to explain some of the best practices in Angular application development that I’ve learnt and used in XmlToJson project.
1. Use const when the value is not going to be reassigned
When a variable is about to point to a constant reference always, we can simply put const
instead of let
. It…