bro nen digress BA LO chaesanu but i'm interested in software filed next nenu em cheyyali
@stanleyakachukwu53866 жыл бұрын
Thanks man! Your voice is good. Your tutorial pure and precise! Keep up the good work.
@t.manikantareddy86814 жыл бұрын
You are awesome dude ....
@Heresiarch885 жыл бұрын
Is there a decent way through which a pure pipe will trigger when adding or removing an item from the array employees? Cloning the array unto itself is not exactly clean, and marking it as not pure is way too demanding for only needing to check one type of change.
@vivekpoojary265 Жыл бұрын
nice explanation
@LuigiZambetti6 жыл бұрын
Please, could you add some videos about the new features in SQL Server 2016/17? And keep going with ASP.NET Core could be fine.
@the-gray-haired-developer6 жыл бұрын
+1
@gerardoortizgerry62806 жыл бұрын
great videos man, i would like to ask a big favor if you have a video on how to add order and order details in angular using firebase, many thanks in advance
@kprabhanew5 жыл бұрын
only partially able to understand. How the filter and button click combined ? once we click the button the employee array get changed , after that only the filter going to apply ?
@souravcit456 жыл бұрын
Nice explanation. Thanks a lot.
@Gameplay998733 жыл бұрын
Is string value type or refe type
@parashuramhosmani15816 жыл бұрын
superb videos
@vivekshrivastava5006 жыл бұрын
Please create video on React also.
@yadusolparterre5 жыл бұрын
I don't get it, you said this.employees[0].name = "John" // this is a PURE change because we are changing a string Therefore why does it work in the first part of the video but not in the 2nd? Why is the pipe only executed once ?
@Heresiarch885 жыл бұрын
Because in the first part the pipe was applied to a primitive (a string). If that string is changed, the pipe is triggered. In the second part, the pipe is applied to an object (an array). If you change a property on that object, it will not trigger the pure pipe, only if the whole object is changed (by reference).