Javascript Interview Questions ( 12 Polyfills ) - Promise(), Memoize(), Bind(), Reduce(), Map() etc🔥

  Рет қаралды 16,966

RoadsideCoder

RoadsideCoder

Күн бұрын

🔴 My Frontend Interview Preparation Course - roadsidecoder.com/course-details (50% Discount)
🟪 My Instagram - / roadsidecoder
➡️ Book an Interview Preparation call with me - topmate.io/roadsidecoder
Javascript Interview Questions on building 12 of the post popular polyfills will be discussed in this video Pollyfills and Output Based Questions for them
🔗 React JS Interview Series -
• Frontend Machine Codin...
➡️ Source Code -
cme.sh/FE-Interview
👤 Join the RoadsideCoder Community Discord -
/ discord
🔗 MERN Stack Chat App Tutorial -
• MERN Stack Chat App wi...
🔗 Complete Data Structures and Algorithms with JS Course - • Data Structures and Al...
🔗 JS Interview Series -
• Javascript Interview Q...
🔗 Cars24 Interview Experience -
• Frontend Interview Exp...
🔗 Unacademy Interview Experience -
• Frontend Interview Exp...
🔗 Tazorpay Interview Experience -
• Frontend Interview Exp...
🔗 React Beginner's Project Tutorials -
• React JS Project Tutor...
#JavascriptInterview #Javascript #FrontendInterview
-------------------------------------------------------------------------
00:00 Intro
00:18 map() polyfill
03:02 filter() polyfill
05:37 reduce() polyfill
08:22 call() polyfill
12:08 apply() polyfill
13:47 bind() polyfill
17:21 once() polyfill
21:08 memoize() polyfill
26:16 promise() polyfill
40:54 promise.all() polyfill
46:29 debounce() polyfill
49:26 throttle() polyfill
-------------------------------------------------------------------------
⭐ Support the channel -
/ @roadsidecoder
Special Thanks to our members -

Пікірлер: 37
@RoadsideCoder
@RoadsideCoder 3 ай бұрын
Roadside to Dream Job - Frontend Interview Prep Course 🔥🔥 roadsidecoder.com/course-details (50% Discount for limited time)
@shivankar-1756
@shivankar-1756 8 күн бұрын
Awesome work was looking for a video with compilation of all polyfills !!
@MrColins710
@MrColins710 3 ай бұрын
the best video, thank you
@manojpathak2500
@manojpathak2500 3 ай бұрын
Great video, for call polyfill, we can delete fn from context object to avoid any modification to the object!
@MathsWithSatyamPandey
@MathsWithSatyamPandey 3 ай бұрын
Amazing👍 bhaiya ❤
@bharatnamdev6169
@bharatnamdev6169 3 ай бұрын
Greate video to learn js concepts👍🏻
@Kamal-216
@Kamal-216 3 ай бұрын
You did a great job, thanks for uploading Bro 🤝
@RoadsideCoder
@RoadsideCoder 3 ай бұрын
Thanks!
@wasimrafik3535
@wasimrafik3535 3 ай бұрын
wow what a great video
@046_dikshit4
@046_dikshit4 2 ай бұрын
From where you learnt js, react ..web dev basically ?
@nitingadariya4318
@nitingadariya4318 3 ай бұрын
Thank you for uploading polyfill video & prototype video will also helpful ❤
@RoadsideCoder
@RoadsideCoder 3 ай бұрын
Prototype video here - roadsidecoder.com/course-details
@FaheemKhan-lt5fe
@FaheemKhan-lt5fe Ай бұрын
@8:17 The polyfill for reduce will fail in some scenarios. For example, suppose we have an array nums = [1,2,0,13], we want to calculate the product of all the numbers so we do nums.myReduce((acc,curr) => acc*curr, 1 ) which will give result as 13 instead of 0. This is happening because we check if accumulator is a falsy value ( ternary operator at line 10 ), and hence assign the current index element to the accumulator. This should only be done for index===0.
@rajkishan3690
@rajkishan3690 Ай бұрын
Right, reduce polyfill is not correct.
@parthgoswami3221
@parthgoswami3221 6 күн бұрын
yea true
@SohailKhan-cx9gb
@SohailKhan-cx9gb 3 ай бұрын
Bro ye video hi chaiye thi interview me yhi pucha jata h plz make one for reactjs all the polyfills like all hooks custom hooks, high order, fetch etc
@RoadsideCoder
@RoadsideCoder 2 ай бұрын
more videos here - roadsidecoder.com/course-details
@manojpaithane5704
@manojpaithane5704 2 ай бұрын
@@RoadsideCoder 😆
@tanvirhasan5901
@tanvirhasan5901 2 ай бұрын
bro, make video on text suggestion after cursor and top of the input, which data is coming from json file. and this is similar to bing copilot
@yashsolanki069
@yashsolanki069 3 ай бұрын
I'm confused why these methods are being referred as polyfills?
@DebopriyoBasu
@DebopriyoBasu 3 ай бұрын
I was just studying about polyfills and you got a video. You read minds or what 😂
@RoadsideCoder
@RoadsideCoder 3 ай бұрын
Yes 😎
@ajiteshmishra0005
@ajiteshmishra0005 2 ай бұрын
for(var i = 1; i { console.log(i); }, 1200); } Output is 4 4 4 & for(let i = 1; i { console.log(i); }, 1200); } Output is 1 2 3 Why??
@NatarajPatil
@NatarajPatil 2 ай бұрын
Because var is function scoped and let is block scoped. When you use a var, it points to same reference i.e after a loop it prints current value which is 4, in case of let, it creates a different reference every time and points to that new value
@mickey-bz5cf
@mickey-bz5cf 16 күн бұрын
Is it necessary for freshers
@rishiraj2548
@rishiraj2548 3 ай бұрын
👍👍
@Shariq26
@Shariq26 3 ай бұрын
Bhai tm yaar cars24 ka interview diye the… I'm following you since last two year and was preparing accordingly and I successfully got the interview from Cars24 and the interview was good except the question to create polyfill for "groupBy". I was having no idea about the purpose of "groupBy" and how it is used in javaScript. You are making good content and it was my bad luck to get such question😅.
@RoadsideCoder
@RoadsideCoder 3 ай бұрын
... ke bad ki line smjh aai bro 👀
@vimalkumar-zz6pn
@vimalkumar-zz6pn 2 ай бұрын
Bhai kya likhna chah rahe ho?
@Shariq26
@Shariq26 2 ай бұрын
@@RoadsideCoder Edited my comment brother
@vishnusingh2300
@vishnusingh2300 3 ай бұрын
8
@shubhamsaini5542
@shubhamsaini5542 Ай бұрын
You made a mistake in throttle and debounce Pollyfils .. actually throttling is debouncing and vice versa
@RoadsideCoder
@RoadsideCoder Ай бұрын
Nope, Its correct
@shubhamsaini5542
@shubhamsaini5542 Ай бұрын
@@RoadsideCoder yes correct , i Understood wrong .. Sorry for wrong comment
@vamshikrishna6001
@vamshikrishna6001 3 ай бұрын
This in this video confuses a little!
@RoadsideCoder
@RoadsideCoder 3 ай бұрын
You can refer to my "this" keyword lesson here - roadsidecoder.com/course-details
@ankittyagi6706
@ankittyagi6706 2 ай бұрын
Array.prototype.myMap = function(fn,thisArg){ let arrInput=this; let res=[]; for(let i=0; i
Can You Draw A PERFECTLY Dotted Line?
00:55
Stokes Twins
Рет қаралды 115 МЛН
Sigma Kid Hair #funny #sigma #comedy
00:33
CRAZY GREAPA
Рет қаралды 17 МЛН
Coding Interviews Be Like
5:31
Nicholas T.
Рет қаралды 6 МЛН
2.5 Years Experienced Best JavaScript Interview
2:03:06
Anurag Singh ProCodrr
Рет қаралды 182 М.
Polyfill in Javascript | Polyfill for Deep copy | Javascript Interview Questions
13:30
Coding Journey With Akash
Рет қаралды 1,5 М.
Learn Closures In 13 Minutes
13:22
Web Dev Simplified
Рет қаралды 44 М.
10 JavaScript Interview Questions You HAVE TO KNOW
13:41
James Q Quick
Рет қаралды 48 М.