My favorite channel for Angular. Thanks from Andhra Pradesh
@swaroopk57132 жыл бұрын
This person is teaching with great efforts in a hard way to understand with possible scenarios
@NishaSingla2 жыл бұрын
Thanks for appreciating the efforts 🙏😊😊
@hi-yi7en2 жыл бұрын
Your selecting example s are really simple to understand... 👏👏.. started to watch your video s daily before go to bed.
@NishaSingla2 жыл бұрын
Thank you
@Narendra12vidhi2 жыл бұрын
Awesome explanation....gr8
@NishaSingla2 жыл бұрын
Thank you 😊
@mehmoodulhassan40423 ай бұрын
Very explicitly explained✨
@sajidahmad693 жыл бұрын
I am hoping some more concept in Angular like Interceptor, JWT implementation etc.
@nishankarupasinghe2884 Жыл бұрын
It was very clear! Thank you very much Nisha.
@akiratoriyama13203 жыл бұрын
Great content!! Thank you for all the hard work!
@NishaSingla3 жыл бұрын
Thanks
@sivachandra39692 жыл бұрын
Excellent explanation madam. thanks for your information.
@siavashpan2 жыл бұрын
Thanks for your videos. In this example you are using spread operators to create a new copy of the original array and object, and then applying changes to them. But that doesn't mean the original array and object are not immutable anymore. One can still make changes to them. I would think this is an example of what happens if an array or object are not copied correctly. Please let me know.
@raviteja-f4c Жыл бұрын
excellent explaination
@Viralshorts_may137 ай бұрын
Hi Nisha, great videos, could you please do scratch level of javascript videos if possible
@vithleshagrawal92342 жыл бұрын
Nice explanation 😊😊
@urvishagreat3 жыл бұрын
awesome explanation.
@NishaSingla3 жыл бұрын
Thank you 😊
@letscode1388 Жыл бұрын
Thank you ma'am. Well explained
@abhimanranaweera1695 Жыл бұрын
Great explanation 👍
@johnkim7783 Жыл бұрын
This is a really nice video !
@shantanujagadale75792 жыл бұрын
@nisha It it same like deep copy and shallow copy object ? If not then what is the difference ?
@deepaksinghbhailwal76152 жыл бұрын
You made thing's so easy that's why I am forced to like or comment 👍
@ashishnayak26663 жыл бұрын
Hi nisha, the intial part where you are showing the slides of mutable and immutable its wrong I believe because array and objects are mutable and strings and numbers immutable...pls check and if possible correct.
@NishaSingla3 жыл бұрын
You are right.. My mistake , will fix that.. thanks for letting me know 🙏
@RZ0093 жыл бұрын
Hi Nisha, Nice explanation. Could you please do a video about view encapsulation
@NishaSingla3 жыл бұрын
Sure I will
@ndesimoniche7125 Жыл бұрын
Thanks for this it help alot
@vasanthapandiyanm24053 жыл бұрын
Nisha could you please post a video about interceptor in angular?
@NishaSingla3 жыл бұрын
sure
@harishv22102 жыл бұрын
thank you
@DevJubayer2 жыл бұрын
Thanks.
@Dineshkumar-tx4fp3 жыл бұрын
Good super
@NishaSingla3 жыл бұрын
Thank you 🙏
@user-et4jf2me5l3 жыл бұрын
Thank you very helpful
@NishaSingla3 жыл бұрын
✌🏻✌🏻🙏
@shamli0262 жыл бұрын
Hi mam, If primitive data types are immutable then in below case will it be mutuable?Can you please explain let x = 20; let y = x++; console.log(x)//21 console.log(y)//20
@pradeepparas1473 Жыл бұрын
In your eg x++ means x = x + 1 And for y, x value which is 20 is assigned to y variable first and then x value is increment by 1