awesome!!!! Thanks for detailed explanation, Please make a complete tutorial series on angular 18 with all new concepts.
@WebTechTalk8 ай бұрын
Nice idea. I will create one video.
@renrenklein_th7 ай бұрын
Great video I love how you show all of your points using examples and not just assuming people can learn just by being told the concepts. Very nicely done.
@WebTechTalk7 ай бұрын
Thanks a lot 🙏
@84JoooliАй бұрын
Thank you for the examples showing why to use these! The first simple example was really all that was needed :) and your real world scenario added the explanation of why we sometimes should allow for setting values inside an effect, great!
@WebTechTalkАй бұрын
Thank you so much for your great feedback.
@mahmoudsamir68763 ай бұрын
I appreciate the time and effort you put into each video.
@WebTechTalk3 ай бұрын
Thank you so much 🙏
@immohammadjaved5 ай бұрын
Hats off to you🎉, the simplest tutorial of signal
@WebTechTalk5 ай бұрын
Thank you so much 🙏
@matthewdolmanАй бұрын
This was a really concise explanation, great work
@WebTechTalkАй бұрын
Thank you so much
@ananda21533 ай бұрын
Detailed explanation of signals with a real time example. Thanks for sharing the knowledge !!
@WebTechTalk3 ай бұрын
Thank you so much.
@PrathyushaReddyChalla4 ай бұрын
Great video. You cleared all my doubts . Thanks A lot !!!
@WebTechTalk4 ай бұрын
Thank you so much
@LexMadafaka5 ай бұрын
Very very useful and understandable example. Thanks you.
@WebTechTalk5 ай бұрын
Thank you so much 🙏
@ayushsharma3974 ай бұрын
Amazing, complete video, Thanks!
@WebTechTalk4 ай бұрын
Thank you so much 😊
@jaykamau27532 ай бұрын
Liked and subscribed! Thank you for the explanation
@WebTechTalk2 ай бұрын
Thank you so much 🙏
@makannanagaraj30603 ай бұрын
Precise explanation, Thank you for your effort
@WebTechTalk3 ай бұрын
Thank you so much
@chandrahaasvemula7251Ай бұрын
Fantastic explanation; he has such a nice Indian tone!!
@WebTechTalkАй бұрын
@@chandrahaasvemula7251 Thank you 🙏
@huw16763 ай бұрын
Really good explanation. Thank you
@WebTechTalk3 ай бұрын
@@huw1676 Thank you
@SumitKhanduri8 ай бұрын
Quick question Do we have to use same instance of TodoService to make it work with signals, instead of => {providedIn: root} can we use => providers:[MyService] But then what is the point of Signals then, i can build the same functionality without signals using shared service. PS: what i am trying to understand is that what advantage signals provides here then.
@WebTechTalk8 ай бұрын
Good question. Yes, we need to have same instance of service, otherwise we cannot share the same signal. The benefit of signals is more related to reactive programming. For example, in an add to cart application, we can share data through service, but if the data changes that will not be notified to the other components unless we use a Subject mechanism or Emitter mechanism. But this will be solved when we use Signals. Also, Signals are recently introduced, and some APIs are getting changed. So, we may expect more features in the upcoming angular releases.
@Remirured7 ай бұрын
Great video, thank you sir
@WebTechTalk7 ай бұрын
Thank you so much
@jashneaaftabi8 ай бұрын
Your every video is ahead of time or I can say AOT 😂 kudos to you 🎉👍
@WebTechTalk8 ай бұрын
Thank you so much 😀
@parmarkamlesh649319 күн бұрын
Hi , very interesting topic and thanks for sharing, can we use signal to change value of radio button based on some conditions at run time and vise versa.? If yes how? The radio button component is in another component and the data which we are processing is in another component. So here we need communication as well between components.
@WebTechTalk19 күн бұрын
@@parmarkamlesh6493 Yes we can do. Usually we use the @output or behaviour subject. We can use signals instead of that. We can directly bind the signal value to the radio button value.
@Hamir.6 ай бұрын
learned with pratical examples
@WebTechTalk6 ай бұрын
Thanks
@ommo2898 ай бұрын
thank you sir for a good and short compilation of the whole theme one question about your real life example: when creating an effect for calling refreshCart() function you said "whenever my cart signal is changed". And there is no single signal value used inside the effect function. Does it mean that effects listen ALL signals that are in the scope of a component (meaning every signal that is stored inside cartService or other dependencies)? Or does it happens because you're actually calling set function of your signal inside of refreshCart (which in it's turn is called inside an effect)?
@WebTechTalk8 ай бұрын
Very good question. The effect is triggered because of this line of code. this.cartService.cart() in the for loop. As I am using the cart signal inside the refreshCart function, whenever its value changes the effect will be triggered.
can u share your github repo for the video example code?
@WebTechTalk4 ай бұрын
You can find all codes related to angular advanced concepts here. github.com/freelancer-surender/Angular-General
@mmkbhdk3 ай бұрын
@@WebTechTalk Thanks a lot
@videogenix55108 ай бұрын
Sir please make a video of project using advanced concepts. Also now angular 18 is out and i am waiting for your videos to know in simple way angular 18 features. Btw way i want to tell you that i switch from my company by learning angular from your zero to hero and hero to superhero series. Whoever asks me i share your channel. Its best and simple. Thanks.
@WebTechTalk8 ай бұрын
Thank you so much 👍 So happy to hear that my videos helped you in your career advancement. Definitely I will create a video on complete project using advanced concepts.
@ghostinplainsight480321 күн бұрын
I'll never understand why they chose to make us call the signal function to get the value `signal()`, rather than using a `signal.value` getter or `signal.value()` method. To me it looks confusing calling a function to get a value from a signal. The convention of rxjs and the async pipeline seems better to me.
@WebTechTalk21 күн бұрын
Yes true. This is a confusing syntax. But we will be familiar with it when we use it often, like how *ngFor and *ngIf was in the beginning, instead of traditional for and if syntax in other programming.
@danielvega6465 ай бұрын
This is basically Angular implementing React. Now we have fewer reasons to use React, lmao.
@WebTechTalk5 ай бұрын
Yes :)
@sunil24sunil4 ай бұрын
bro i need parent child concepts using output input
@WebTechTalk4 ай бұрын
Please see this video bro kzbin.info/www/bejne/pGW4lXyMlpifr6c
@anutaNYC7 ай бұрын
I am still not clear how we know that effect will not trigger infinite changes?
@WebTechTalk7 ай бұрын
Effect will trigger infinite changes only when we are setting some value inside the effect which triggers another effect and the loop continues.
@videogenix55108 ай бұрын
Why you stopped sharing github for advanced concepts? Can you please share them?
@WebTechTalk8 ай бұрын
I usually push the code once after the video is published. You can check now.
@arunrocky56299 күн бұрын
Why are we polluting the constructor again?? Professionals say we are not supposed to write any business logic in the constructor. Why are we writing effects in the constructor?
@WebTechTalk9 күн бұрын
You are right. I should have used inject and use effects outside constructor. But I thought it may confuse the viewers. Also, I have read somewhere we can use effects in constructor with caution. As this is a small app, I thought of using in constructor itself.
@matthewkk50878 ай бұрын
Its same like react usestate as I see
@WebTechTalk8 ай бұрын
Yes. And effect is somewhat similar to useEffect.
@igorr46827 ай бұрын
It's very disappointing and discouraging that we don't have any English-speaking individuals who can effectively teach others in a proper way.
@WebTechTalk7 ай бұрын
Sorry bro I am not a native English speaker
@mohammedhussain6027 ай бұрын
Well u try teaching this subject nothing stopping, or u saying ur English is not up to spec😂
@Zhene4eg7 ай бұрын
Okay, so looks like Angular team want's to stop using ReactiveX(RxJS) - and use their own approach istead. Looks like main idea of signals - remove third party RxJS from Angular, am I right ?
@WebTechTalk7 ай бұрын
Reactive programming is always good and Angular is moving towards the same. We still need RxJS. Also angular is improving performance in many ways. One such way is through Signals.