This is something I can really apply in real work, other youtubers give such bad examples/implementaions that do not help. it helps only to understand something that you will not use.
@SaadAliAlkhairi Жыл бұрын
Thank you sir for putting the effort in this course. I would say this is the best Angular course I found on KZbin. The examples you give are more realistic and related to world which helps to understand everything with great ease. I'll recommend this course to everyone who want to learn Angular. Lot's of love for you Sir.
@mozammilahmad8431 Жыл бұрын
Wohhhoooo...explaining a way like a small kid will understand
@YouCantGetBrokeByGiving2 жыл бұрын
I like your style very much, thank you for your hard work!
@michaeltkachenko7313 Жыл бұрын
By the way, what has not been mentioned in the video, or simply has not been accented, is that by using a service we do not just avoid duplicating code, but making our app more flexible and scalable. Imagine if you want to change some logic of inserting a user to a database, if you have separate duplicate realisations of this method in different components, than, you will have to change the logic in EACH function separately, it takes more time and has a higher chance of making a mistake. Using a service like this, on the other hand, you will have only one method, and changes in one place of your app will make the whole other behaviour of all the components, without changing each of them one by one. Therefore, such an attitude provides a way greater maintenance options with lesser resources.
@raghuguru86612 жыл бұрын
This is good information.. thanks for making video .. waiting on dependency injection..
@sumaganjal2 жыл бұрын
Explanation is great, easy to understand. Thank you
@matthewcullinane5372 жыл бұрын
Great video. Very simple and informative. Thank you!
@ahmedshehata896411 ай бұрын
is it okay to import this service in appModule component to avoid importing it in all componenets ?
@hashamniazi3402 Жыл бұрын
it was really helpful Thank You ♥♥
@JupudiManikantaSwamy7 ай бұрын
Thanks Sir
@sivaprasad104102 жыл бұрын
@procademy can we intialise the service class in OnInit() life cycle hook
@esthermatangi Жыл бұрын
sir can you create javascript playlist
@cliniclown8786 Жыл бұрын
hundreds of thousands of lines in one method? damn I've yet to experience that
@HealthChampion8 ай бұрын
To be fair to him, he is saying 'Hundreds or thousands of lines of code', not 'of'. Still, thousands of lines of code in one method, I am yet to experience too :)
@cliniclown87868 ай бұрын
oh yea, hundreds or thousands is what I meant to say. Have never seen that either, but I'm a beginner software developer@@HealthChampion
@DineshKumar-by1bv Жыл бұрын
Hello Can you pls share a video for contact form sending mail
@VamshithGB3 ай бұрын
sir pls give me CSS code of this project
@CHANDRASHEKHAR-hk8sq Жыл бұрын
sir where is source code
@procademy Жыл бұрын
github.com/manojjha86/complete-angular-13-course
@hcr2bangladesh Жыл бұрын
looks like you just learned ng, that's not how services are used now. and where is DI?
@lxdzii Жыл бұрын
i'm also shocked at how he implemented the service!
@HealthChampion8 ай бұрын
He is simply showing the old way and covers the DI in next video and he is mentioning that at the end of this video.
@andreiberes94427 ай бұрын
Why he did not injected the service in a constructor ? Am i missing something ? Im also new in ng, just asking.