Frontend Interview Preparation | Guess the output Part Finale | Javascript Interview Preparation

preview_player
Показать описание
This video is a last part in our series guessing the output that we have started to prepare for frontend interviews.

You can connect with me on LinkedIn for paid mentorship program.

This channel is created to help and give back what I have learned from my 6 years of front-end development career. I have been an interviewer and interviewee and I exactly know what companies and organizations expect from a candidate on all experience levels.

Through this channel, I will be creating a whole lot of questions series starting from beginner to advanced levels questions where people can come and take advantage of my gathered knowledge.

Future Plans for this channel:
1. Live streaming twice a week to answer live questions from my audience.
2. Start an official communication channel on discord/slack to organize our community and for easy interview preparation.
3. Real Interviews Practice
4. Referrals from my network for deserving and hard-working candidates
5. one to one training for potential candidates
6. one weekly podcast with industry specialists

Connect with me on LinkedIn

Connect with me on Twitter

Connect with me on Instagram

Follow my other youtube channel for cryptocurrency market daily updates and free trade signals

Рекомендации по теме
Комментарии
Автор

Great Questions....tricky but Interesting...Thank you

subhramukherjee
Автор

1) output will be ['coding', 'dancing', 'banking'] because or first function call we are passing empty array so default parameter is not considered for second function call we are not passing any second argument so default parameter will take person object element hobbies array so dancing will be pushed in that array, and for third function call we are passing hobbies array from person object and hence banking will also be added in same array because object is referring to same memory location

2) I think basic difference between for in and for of is that
For in loop iterates over key of objects and for of interates over value
So here evey element of myLifeSummedIp will be displayed but for for in loop it will iterates over keys which is here is index on every element and for of will iterates over values of array

rishabhkunwar
Автор

1. in hobbies of person object there will be coding, dancing, baking
1st function call will override the default param of addHobby function that's why it will not be pushed into the array


2.for in will give indexes and used mainly used while iterating over objects. for of will give elements mostly used to access array elements

spm.o
Автор

For 2nd give away question for in is used to retIn the above we use for - in

bskupdates
Автор

in js dsa is hard, because we do not get any build in data structure there, so is it good that we practice dsa questions in c++ as web developer.

shubhamjapkar
Автор

Where l i can get this All questions list ?

umeshshelke
Автор

please post important tips for interview questions

bskupdates
Автор

Hi Ma'am
can please explain be the below code or any refrence for that
(function() {
return [ (() => this.x).bind({ x: 'inner' })(), (() => this.x)() ]

}).call({ x: 'outer' });

amiteshsingh