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 🙏😊😊
@Narendra12vidhi2 жыл бұрын
Awesome explanation....gr8
@NishaSingla2 жыл бұрын
Thank you 😊
@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
@SalveruajayPj3 сағат бұрын
Hi @nisha while we use spread operator or concat the values of sub array is still mutable
@akiratoriyama13203 жыл бұрын
Great content!! Thank you for all the hard work!
@NishaSingla3 жыл бұрын
Thanks
@mehmoodulhassan40425 ай бұрын
Very explicitly explained✨
@nishankarupasinghe2884 Жыл бұрын
It was very clear! Thank you very much Nisha.
@sajidahmad693 жыл бұрын
I am hoping some more concept in Angular like Interceptor, JWT implementation etc.
@Viralshorts_may138 ай бұрын
Hi Nisha, great videos, could you please do scratch level of javascript videos if possible
@raviteja-f4c Жыл бұрын
excellent explaination
@urvishagreat3 жыл бұрын
awesome explanation.
@NishaSingla3 жыл бұрын
Thank you 😊
@vithleshagrawal92342 жыл бұрын
Nice explanation 😊😊
@sivachandra39692 жыл бұрын
Excellent explanation madam. thanks for your information.
@RZ0093 жыл бұрын
Hi Nisha, Nice explanation. Could you please do a video about view encapsulation
@NishaSingla3 жыл бұрын
Sure I will
@johnkim7783 Жыл бұрын
This is a really nice video !
@abhimanranaweera1695 Жыл бұрын
Great explanation 👍
@shantanujagadale75792 жыл бұрын
@nisha It it same like deep copy and shallow copy object ? If not then what is the difference ?
@vasanthapandiyanm24053 жыл бұрын
Nisha could you please post a video about interceptor in angular?
@NishaSingla3 жыл бұрын
sure
@deepaksinghbhailwal76152 жыл бұрын
You made thing's so easy that's why I am forced to like or comment 👍
@Dineshkumar-tx4fp3 жыл бұрын
Good super
@NishaSingla3 жыл бұрын
Thank you 🙏
@letscode1388 Жыл бұрын
Thank you ma'am. Well explained
@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 🙏
@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.
@ndesimoniche7125 Жыл бұрын
Thanks for this it help alot
@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