Author: sovit
Culture Of Remote Work 21st century has brought about a lot of drastic changes in our culture and style of living mainly due to it’s technological advancements. One of …
Live Coding Support Codementor is a large community for developer mentor-ship and an on-demand marketplace for software developers. Get instant live coding support, build projects faster, and read programming …
Using Local Variables within Angular, we can easily access and reference HTML elements and their properties within other HTML elements in the view. What does that mean? It means …
NgSwitchCase directive along with its parent NgSwitch block enables you to decide which view to display when the expression is evaluated dynamically. When a given property in the app.component …
Writing If, Else statements are the fundamental elements of programming. Starting from version 4, Angular supports writing “If” as well as “Else” statements. Before that only “If” statements were …
In the previous post, we looked at how we can display dynamic values in the Angular Component into our Views with the help of Interpolation. In this post, we …
In any app, it is important to have mechanism to provide dynamic data to the view. Without dynamic data, the page just becomes a static page. In an angular …
Defining CSS in Angular app is very similar to defining HTML Templates. Four Different Ways of Defining CSS In Angular Within the component decorator, we can choose to write …
We can define HTML Templates in Angular App in two different ways. We can write inline HTML within the template property of the component decorator, or we can place …
Angular components allow us to define both the logic and the views for our app. A component is basically structured in three different sections: Imports Imports reside at the …