WATCH NEXT: Angular Interview Questions and Answers - Dominate Your Next Interview - kzbin.info/www/bejne/a3LCin6ii7yAhtEsi=2DCn7yspEAAJ2H6l
@mohammedmerajpasha41811 ай бұрын
I was looking for a good angular resource to learn and luckily found your channel Thank you........
@MonsterlessonsAcademy11 ай бұрын
Glad I could help!
@gaetanlavit7330 Жыл бұрын
Thanks a lot, nice one again
@MonsterlessonsAcademy Жыл бұрын
Always welcome
@chrisb39022 жыл бұрын
Great video!
@MonsterlessonsAcademy2 жыл бұрын
Thanks!
@llamamehoju3 жыл бұрын
Gracias !!
@MonsterlessonsAcademy3 жыл бұрын
You are welcome!
@serhiitachuk4 жыл бұрын
Thanks! Very useful video
@MonsterlessonsAcademy4 жыл бұрын
Glad to hear!
@SyahirahFaizal2 жыл бұрын
Hi, i thought it's better to put the function in the child component rather than the parent component?
@MonsterlessonsAcademy2 жыл бұрын
Hi, it depends on what you want to achieve. Most often we want to do smart parents with business logic and dumb children without any logic.
@ahmedmk5342 жыл бұрын
is it possible to have the advanced course for free ? thanks
@MonsterlessonsAcademy2 жыл бұрын
No as the point of advanced courses to sell them.
@yarishkumar Жыл бұрын
@@MonsterlessonsAcademy it is good pace/speed. keep up the good job. thank you for sharing your valuable knowledge and time.
@fahadhafeez80863 жыл бұрын
Thank You. But I think you need to increase your speed a bit.
@MonsterlessonsAcademy3 жыл бұрын
I will try to improve it but as I'm not a native speaker it's the best what I can :)
@rostomnouisser4023 Жыл бұрын
do it like me in settings playback speed *2
@HoNow2223 жыл бұрын
Why using vim tho?
@MonsterlessonsAcademy3 жыл бұрын
It's more comfortable and productive for me
@parasjoshi5509 Жыл бұрын
No sound
@MonsterlessonsAcademy Жыл бұрын
I hear it just fine.
@parasjoshi5509 Жыл бұрын
@@MonsterlessonsAcademy there is no sound. I'm from india. Is this video audio restricted?. Can you create a new one. Thanks
@MonsterlessonsAcademy Жыл бұрын
@@parasjoshi5509 Nothing is restricted. You are the first person who has problem with audio in my video so it looks like the problem is on your side.
@artem_zakharchuk10 ай бұрын
user-list.component.ts Member 'users' implicitly has an 'any' type. if I create user.ts export type User = { id: string; name: string; age: number; } and change @Input at user-list.component.ts as below: @Input() users!: User[]; everything works. But if I took away the exclamation mark then I received the message: Property 'users' has no initializer and is not definitely assigned in the constructor. What does it mean in case of @Input? We have to initiialize it somehow?