You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is a package manager? Can you provide two examples of package managers? They are tools that help you manage the dependencies of your project, such as libraries, frameworks, and utilities. for example : NPM, YARN, and PNPM
What is Angular CLI? Angular Command line is used for serving the project or building it to use it in on the server or generation components and services templates and etc.
Which lifecycle method is called first? constructor
Which lifecycle method is called last? ngOnDestroy
Which lifecycle method is called when some change happen? ngOnChanges
Consider that we want to initialize a property and display it in the HTML template. Which lifecycle method should we use? ngOnInit
When we want to use services with injection in the root, what design pattern do we use?
@Injectable({providedIn: 'root',})
Singleton
Can you explain some built-in pipes in Angular? DatePipe, UpperCasePipe, LowerCasePipe, AsyncPipe, JsonPipemore in this link
What kind of binding do we use when we want to change and update a property that is passed to a child component, or vice versa? Two way Binding
Project
Complete the book collection manager project mentioned in the Angular documentation.
The text was updated successfully, but these errors were encountered:
Learning
What is a package manager? Can you provide two examples of package managers?
They are tools that help you manage the dependencies of your project, such as libraries, frameworks, and utilities. for example : NPM, YARN, and PNPM
What is Angular CLI?
Angular Command line is used for serving the project or building it to use it in on the server or generation components and services templates and etc.
Which lifecycle method is called first?
constructor
Which lifecycle method is called last?
ngOnDestroy
Which lifecycle method is called when some change happen?
ngOnChanges
Consider that we want to initialize a property and display it in the HTML template. Which lifecycle method should we use?
ngOnInit
When we want to use services with injection in the root, what design pattern do we use?
Singleton
Can you explain some built-in pipes in Angular?
DatePipe, UpperCasePipe, LowerCasePipe, AsyncPipe, JsonPipe
more in this linkWhat kind of binding do we use when we want to change and update a property that is passed to a child component, or vice versa?
Two way Binding
Project
The text was updated successfully, but these errors were encountered: