[x] What is a package manager? Can you provide two examples of package managers? npm, yarn, pnpm
[x] What is Angular CLI? A command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell
[x] Which lifecycle method is called first? constructor
[x] Which lifecycle method is called last? ngOnDestroy
[x] Which lifecycle method is called when some change happen? ngOnChanges
[x] Consider that we want to initialize a property and display it in the HTML template. Which lifecycle method should we use? ngOnInit
[x] When we want to use services with injection in the root, what design pattern do we use?
@Injectable({
providedIn: 'root',
})
singleton
[x] Can you explain some built-in pipes in Angular? Date, async, UpperCase, LowerCase
[x] 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
[x] Project
[x] Complete the book collection manager project mentioned in the Angular documentation.
[x] Learning
[x] What is a package manager? Can you provide two examples of package managers?
npm, yarn, pnpm
[x] What is Angular CLI?
A command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell
[x] Which lifecycle method is called first?
constructor
[x] Which lifecycle method is called last?
ngOnDestroy
[x] Which lifecycle method is called when some change happen?
ngOnChanges
[x] Consider that we want to initialize a property and display it in the HTML template. Which lifecycle method should we use?
ngOnInit
[x] When we want to use services with injection in the root, what design pattern do we use?
singleton
[x] Can you explain some built-in pipes in Angular?
Date, async, UpperCase, LowerCase
[x] 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
[x] Project