Month: November 2022

Property Binding (DOM Property)

What is Property Binding? When we can assign an attribute value with a property is called a property binding, Like if we set a property myId with the value “testId” in the component class and if we wish to make the value of an attribute of HTML of the template then we have to enclose […]

Read More

Angular Interpolation

To show Interpolation we are going to use the ‘Hellow World’ project we have created before with a component name test, in our previous angular tutorial. Or you can create a new project also for the interpolation. What is an interpolation: In one word it can be said that interpolation is used to make a […]

Read More

Component of Angular

As I have already mentioned previously that the component of angular contains the various types of view. So let’s discuss the angular component in detail. We will learn how to make a component and the basics of the component and also going to learn how to add a new component and how to use it. […]

Read More

The file structure of the Angular application

Inside an angular project, there are a lot of files. Among them, we are going to discuss only a few files. So let’s discuss the file structure of an angular application A few file structures of an Angular Application As told we are going to learn about the file structure of the angular application one […]

Read More

Angular architecture and file structure by creating the first project Hellow World

To create an angular project, create a folder to store your application in any directory you want. After creating the folder open your command terminal and go into the folder. For that first select the drive by entering the drive name, then give the cd <your folder location> After entering the folder, type the command […]

Read More