Comments in Code
Comments in code can be used to better explain what is going on and make it more readable. They can also be used to prevent code execution. Let’s take a…
July 23, 2021 • 2 minute read
Dynamically Set Page Title in Angular App
The title tag is used to display the HTML page title in the browser’s title bar. It is a required tag and important for search engine optimization. An Angular application…
April 11, 2021 • 4 minute read
Remember State Of Collapsible Navigation
There is navigation out there that allows a user to collapse the navigation. This gives the user more screen real estate. If a user prefers the navigation to be collapsed,…
April 6, 2021 • 3 minute read
Display Current Environment in Angular App
Have you ever wanted to display which environment your user was in somewhere in your Angular application? Maybe display a Beta label in the header of the app if they…
March 31, 2021 • 2 minute read
2 Ways To Dynamically Load Angular Components
Most of the time, you know which Angular component you want to use and where it should appear in the template. What if you needed to load components programmatically? Maybe…
March 14, 2021 • 5 minute read