i liked the way you explained Array.prototype now i can utilize, in the place of map,reduce,filter
@deepakpawar55933 жыл бұрын
Good Content
@NishaSingla3 жыл бұрын
Thanks
@Avishekkumargupta-e9k Жыл бұрын
Your video are very helpful to me. thanks a lot. ............explanation should be twice instead of square.
@MrJohncenaraw3 жыл бұрын
Very useful..i am happy understand my long time doubts. Thank you
@NishaSingla3 жыл бұрын
Glad to know 😀
@ecevetri95452 жыл бұрын
Clear Explanation thank you!👍
@RakeshKumar-br3rg2 жыл бұрын
Plz explain pure and impure functions. Thanks for your great videos.
@NishaSingla2 жыл бұрын
Sure
@urvishavachhani76233 жыл бұрын
Thank you Nisha for simply awesome explanation. Your deep copy and shallow copy video helped me in my interview. please make more and more videos for front end interviews :)
@NishaSingla3 жыл бұрын
Glad to know ..😀😀thanks
@ramadevi-xe4be Жыл бұрын
excellent explanation nisha
@narendra75562 жыл бұрын
Nisha , it was really helpful tutorial pls make one complete playlist on interview javascript these thing
@NishaSingla2 жыл бұрын
Sure thanks
@ashishnayak26663 жыл бұрын
Clear explanation
@NishaSingla3 жыл бұрын
Thanks 😊
@durgaprasadbrahmandlapally3 жыл бұрын
Hi Nisha, your explanation next level, I thought instead of citizen, it's object.
@NishaSingla3 жыл бұрын
Thanks 😊
@saishree10002 жыл бұрын
Thanks nisha its very useful
@iamsouravganguli Жыл бұрын
👍 nice
@ankitaggarwal5845 Жыл бұрын
Please upload more videos of Advance Javascript.
@hi-yi7en2 жыл бұрын
Tq
@asanmohamed72812 жыл бұрын
@Nisha singla could you pls do “Joseph’s problem “ using recursive in java script
@shubhampatil5935 Жыл бұрын
why everyone does not give real life usecase of hof?
@satyasanghavi67912 жыл бұрын
Hi nisha, your videos are good. Can you please make videos on oops in javascript
@durgaprasadbrahmandlapally3 жыл бұрын
Nisha do video on life cycle hock
@zenchoudhary38492 жыл бұрын
1:31 second Syntex is wrong you forget to write =>
@31sar2 жыл бұрын
Just a correction , square is number * number
@akrammohammed35813 жыл бұрын
Please give me some project ideas to implement rxjs in angular..
@Dev-fk5rn Жыл бұрын
It would be much obliged by us if upload notes for the same as well..🎉
@SingajogiSudhakar Жыл бұрын
Array.prototype.repEachElement = function(callback) { return this.reduce((newArray, element) => { newArray.push(callback(element)); return newArray; }, []); } let data = [1,2,3,4,5,6]; const op = data.repEachElement((el) => el); console.log(op);
@IraquiRizwanVlogs3 жыл бұрын
Nice video ma'am. But square means number*number . Not multiple with 2. 😉
@NishaSingla3 жыл бұрын
Yes, you are right... add a subtitle to correct that.. Thanks to bring it in my notice... :)
@IraquiRizwanVlogs3 жыл бұрын
Ma'am please make video on practical coding issue.
@IraquiRizwanVlogs3 жыл бұрын
How big companies write some pices of codes? What are their parameters for a specific language . Such as c#, javascript, how they write?
@ProtikPC_pro_indigo3 жыл бұрын
@@NishaSingla good content; Thanx for explaining this concept; As I see and understand this --> this helps write clean code. Not just very long walls of JS/ES6 code that we often end up with, in projects, but isolating, segregating pieces like individual/independent building blocks; I suppose this promotes easier testability of the same as well like unit tests etc. That, plus the point you mentioned yourself --> making it more reusable *** func. logic should be d[i]*d[i] as it's not double but square.
@NishaSingla3 жыл бұрын
Absolutely…. You mentioned it very well And regarding formula , I added in caption the correct one.. 😊😊
@mdnasiransari20392 жыл бұрын
In function x argument is fn but inside the function you are doing fn() I didn't not understand why you are doing this
@NishaSingla2 жыл бұрын
Because I am passing y to x function x(y) and if you check here y is also a function which I am referring with fn argument inside x function , so I am calling fn() , it means it will execute y() function and that is Higher Order function( function passing as argument to other function) I hope its clear
@mdnasiransari20392 жыл бұрын
@@NishaSingla thank you for your clarification now crystal clear.
@nazrealam37742 жыл бұрын
square of 10 is 100, how come 20, that is multiplication of 2.
@bharatmoger99653 жыл бұрын
Please help me on this : write a function which will display all the values with 'value' key in es6 let multiLevelData = { value: 2, data: [{ value: 3, data: [{ value: 4, data: [{ value: 6, data: [] }] }, { value: 5, data: [] }] }] }
@denisugiartodev Жыл бұрын
function recursivePrintData(d) { console.log(d.value); if (d.data.length === 0) return; d.data.forEach((val) => { recursivePrintData(val); }); } recursivePrintData(multiLevelData);