I think you are the best teacher(by God) of Angular lecture. I loved your teaching.
@sona4612 Жыл бұрын
Such a detailed videos.. thank you sir🔥🔥 Am still wondering how the likes are very less for these awesome videos..
@kiranshelar2961 Жыл бұрын
Great explanation 👌🏻
@sanatanShishya15218 ай бұрын
what a beautifully explained. Thanks for your nice explanation with change detection to ngOnChanges- this same question asked in many interviews with practical examples. It's really helpful. We need concepts understanding but the most important point is useCase when and where to use in project requirement. That's what we got here. Susbcribed. Keep growing.
@advance518910 ай бұрын
Awesome!
@ashrikahamed_ Жыл бұрын
Nice
@_4M11 ай бұрын
I’d have loved a demonstration of what happens when there are more than one input, will it get called for each one when the component is initialized and the values are retrieved from the parent or just called once after all inputs are loaded?
@AjayCoding Жыл бұрын
❤
@amarreddy8657 Жыл бұрын
I would greatly appreciate it if you could provide notes under each video's description.
@omyaa57858 ай бұрын
How can get all the notes?
@flutterdevfarm Жыл бұрын
Sir, can we get notes or something so that one can revise all the topics?
@pradeepsingh7807Ай бұрын
let me know if u get notes. I also need them.
@ilyespyru954 Жыл бұрын
ty
@chanaky09255 ай бұрын
Sir, I found two cases - Please correct me ------ Case I Statement: Whenever a variable related to input-bound properties in the parent component is updated, the ngOnChanges() lifecycle hook of the child component is executed. Explanation: When a parent component updates a property that is bound to an input property of a child component, Angular detects this change and calls the ngOnChanges() lifecycle hook in the child component. This hook receives a SimpleChanges object containing the current and previous values of the input-bound properties. Case II Statement: Whenever a variable related to input-bound properties in the child component is updated, the ngOnChanges() lifecycle hook of the child component is not executed. Explanation: The ngOnChanges() lifecycle hook is triggered only by changes to input properties that originate from the parent component. If a property within the child component itself is updated, ngOnChanges() will not be called. This hook is specifically designed to respond to changes from the parent component, not from within the child component.