Selected as Frontend Engineeer | 1 Year Experienced Interview | JavaScript and React

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024
  • The Complete JavaScript Course: • The Complete JavaScrip...
    The Complete React Course: • The Complete React Cou...
    Complete Frontend Course: • Web Development Course...
    The Complete CSS Course: • Getting Started with C...
    Redux Full Course in Hindi: • Redux Fundamentals in ...
    Are you gearing up for a frontend interviews and feeling a bit anxious about what to expect? Participate in our FREE Mock Interview sessions by filling the Google Form below and get interview ready.
    Google Form: forms.gle/ZvLV...
    Social Media
    🌐 Telegram: t.me/procodrr
    🌐 Linkedin: / anurag-singh-web-devel...
    🌐 Instagram: / procodrr
    🌐 Twitter: / anuragsinghbam
    🌐 Portfolio: anuragsinghbam...
    #react #procodrr #webdevelopment #mockinterviews #frontendinterview #javascriptinterview

ความคิดเห็น • 136

  • @bivekyadav08
    @bivekyadav08 7 หลายเดือนก่อน +39

    I am falling in love with these amazing content keep doing the good work😊

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +3

      Thank you so much.
      Keep learning and sharing 😊

  • @shikhargupta4249
    @shikhargupta4249 6 หลายเดือนก่อน +51

    bro was called to get humiliated

    • @itachiuchiha1029
      @itachiuchiha1029 6 หลายเดือนก่อน +3

      😂 he's giving himself too much number 😂that's why.

    • @themastermind2063
      @themastermind2063 5 หลายเดือนก่อน +3

      As if u can answer all the questions

    • @SuperYoman100
      @SuperYoman100 4 หลายเดือนก่อน

      @@themastermind2063 If you can't, doesn't mean other can't either.

  • @dsagamer2024
    @dsagamer2024 6 หลายเดือนก่อน +14

    Amazing Video. I learned alot one thing in notice in each interview video is " The basic concepts are the most important "

    • @procodrr
      @procodrr  6 หลายเดือนก่อน +2

      Yes, fundamentals are most important.

    • @dsagamer2024
      @dsagamer2024 6 หลายเดือนก่อน

      Can you tell me which font did you use for the comments
      @@procodrr

  • @amanraina5812
    @amanraina5812 7 หลายเดือนก่อน +8

    IO polling queues and timer queues which he is talking about is present in the NODE environment and not in the javascript environment. JavaScript only has microtask queue and callback queue. BY THE WAY thanks for the another great video sir. Learnt a lot 🙏🏼

    • @procodrr
      @procodrr  7 หลายเดือนก่อน

      Thanks for the clarification. I will learn that as well.
      I'm glad you liked the video. Keep learning and sharing 😊

  • @stech444
    @stech444 2 หลายเดือนก่อน +2

    SetTimeout Will go in callback Queue and Promise will go in Micro Task Queue, so Micro Task Queue has more priority as compared to callback Queue so it will first execute promise and then execute SetTimeout

  • @Samrin_Rais
    @Samrin_Rais 7 หลายเดือนก่อน +12

    Best channel for cracking interview

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +4

      Thank you 😊

    • @prabudh92
      @prabudh92 7 หลายเดือนก่อน +2

      Which of the interview u have cracked?

  • @saraswataroy553
    @saraswataroy553 7 หลายเดือนก่อน +13

    Worth the time. Thanks for the video.

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +2

      Glad you liked it!

  • @vamshikrishna6001
    @vamshikrishna6001 4 หลายเดือนก่อน +1

    Great video! Need more indepth questions on reactjs, JavaScript. Video's on debugging of issues as for very experience developer

  • @p4avinash
    @p4avinash 4 หลายเดือนก่อน

    Awesome video, got a lot to learn in this. JavaScript part was so unpredictable..!! Thanks for the video and keep making such kind of videos, because it helps a lot for the preparation of interviews.

  • @vandanayadav1035
    @vandanayadav1035 5 หลายเดือนก่อน +1

    2 way to panding promise
    async function foo(){

    return "Hello world";
    }
    const data = foo().then(result => {
    return result // "Hello World"
    });
    console.log(data);

  • @ap-nr3zi
    @ap-nr3zi 7 หลายเดือนก่อน +4

    learning to code from yt and i am a graduate from a non tech course. Hope i will be able to give interviews after 7-8 months.

    • @ap-nr3zi
      @ap-nr3zi 7 หลายเดือนก่อน +1

      Any recommendations for a non tech student who wants to change the career at the age of 24.

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +2

      Make your fundamentals strong.
      HTML, CSS and JavaScript.

  • @user-ld1ub4qq8b
    @user-ld1ub4qq8b 5 หลายเดือนก่อน +1

    I have started watching your videos . lots of doubts are getiing clarified . can you please make mocks with experince people and also freshers, we will get to know more

  • @hello-world556
    @hello-world556 14 วันที่ผ่านมา +1

    after the interview bros notebook be like - "aadha frontend toh edhar hi haina bhai🙂" - just kidding nicely covered all concepts

  • @maxvhanamane840
    @maxvhanamane840 7 หลายเดือนก่อน +3

    8:50 he was right, the priority order is correct.... Inline CSS has the highest priority, followed by internal CSS, and then external CSS.

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +3

      Inline CSS has highest priority that is correct.
      But internal CSS does not have more priority than external CSS. Both have same priority.

    • @maxvhanamane840
      @maxvhanamane840 7 หลายเดือนก่อน

      I have created a tag and applied the color red to it using inline CSS. Additionally, I added the color yellow to the same tag using internal CSS within the tag in the . Subsequently, I created an external CSS file and assigned the color blue to the tag.
      Initially, you will observe the red color applied to the tag due to its higher priority(inline css). If you remove the inline style (color: red), the yellow color from the internal CSS will take precedence. If you further remove the internal CSS (color: yellow), the blue color from the external CSS will be applied.
      In summary, the priority order is inline, internal, and then external.
      If you have all three styles defined and wish for the external CSS to take precedence over everything, you can use !important in the color: blue !important declaration.
      @@procodrr

    • @maxvhanamane840
      @maxvhanamane840 7 หลายเดือนก่อน

      ​@@procodrrI have created a tag and applied the color red to it using inline CSS. Additionally, I added the color yellow to the same tag using internal CSS within the tag in the . Subsequently, I created an external CSS file and assigned the color blue to the tag.
      Initially, you will observe the red color applied to the tag due to its higher priority. If you remove the inline style (color: red), the yellow color from the internal CSS will take precedence. If you further remove the internal CSS (color: yellow), the blue color from the external CSS will be applied.
      In summary, the priority order is inline, internal, and then external. If you have all three styles defined and wish for the external CSS to take precedence over everything, you can use !important in the color: blue !important declaration.

    • @maxvhanamane840
      @maxvhanamane840 7 หลายเดือนก่อน +2

      @@procodrr I have created a p tag and applied the color red to it using inline CSS. Additionally, I added the color yellow to the same p tag using internal CSS within the style tag in the head section. Subsequently, I created an external CSS file and assigned the color blue to the p tag.
      Initially, you will observe the red color applied to the p tag due to its higher priority(inline css). If you remove the inline style (color: red), the yellow color from the internal CSS will take precedence. If you further remove the internal CSS (color: yellow), the blue color from the external CSS will be applied.
      In summary, the priority order is inline, internal, and then external.
      If you have all three styles defined and wish for the external CSS to take precedence over everything, you can use !important in the color: blue !important declaration.

    • @AdarshSingh-hm8ss
      @AdarshSingh-hm8ss 7 หลายเดือนก่อน +1

      @@maxvhanamane840 No, here sir is right here want me to expain?😆

  • @arvajkhan683
    @arvajkhan683 7 หลายเดือนก่อน +3

    You are great teacher for me

  • @TheAnuragshukla18
    @TheAnuragshukla18 5 หลายเดือนก่อน +2

    One of the good video

  • @AbhishekSharma-sq4ps
    @AbhishekSharma-sq4ps 7 หลายเดือนก่อน +7

    Sir i have 1 years handon experience in MERN i'm student of BCA 5sem looking for job is it difficult to get job in present situation?

  • @09avishkargaikwad71
    @09avishkargaikwad71 5 หลายเดือนก่อน +1

    Time Worth it video.

  • @iamabhaykaran
    @iamabhaykaran 5 หลายเดือนก่อน

    X=20 is not passed as a parameter in function
    Then function take x in local scope before creating that's why its shows undefined its is not taking value from global scope such as there is no relationship to x=20; bcz its not taking x value as perameter

  • @ravijaiswal9231
    @ravijaiswal9231 5 หลายเดือนก่อน

    Sometime peoples good in theoretical part and sometime in practical part. However, Who have both the skills, That person is often regarded as exceptionally competent or proficient.

  • @soumiarouba2729
    @soumiarouba2729 7 หลายเดือนก่อน +2

    best channel 😊😊😊

  • @niteshrathore4341
    @niteshrathore4341 7 หลายเดือนก่อน +8

    I think its better you can share the question in the description of the video for the reference

  • @anandnishant3537
    @anandnishant3537 4 หลายเดือนก่อน

    53:00 what if variable and function have same name?
    --- both will get hoisted but function declaration will get precedence over variable declaration, but when code execution phase starts, the variable will get assign some value(in our case it is 20). Now the variable assignment will get precedence over function declaration.
    that's why we get "calling foo" on first function call and get an error on 2nd function call.(because value assigned to the variable after first function call)
    if we try to log after variable assignment, we get 20.
    please correct me if I am wrong.

  • @mohdsameer2445
    @mohdsameer2445 6 หลายเดือนก่อน +2

    Please share a pdf file or notes or docs or something of all the questions asked with answers and explanation if possible because that would really help us and your channel too cuz we'll be able to share that file with our colleagues.

  • @iamabhaykaran
    @iamabhaykaran 5 หลายเดือนก่อน

    1st foo executie function then machine know that there is 2 same name function and variable that's why it throws error in 2nd bcz hoisting is not work on function

  • @Earth_Being
    @Earth_Being 6 หลายเดือนก่อน +5

    samajh nhi ata interview lene keliye "interrogator" jaisa personality mode me jana kyun jaruri he. jaise ki andar koi jaan he hi nhi machine se baat karrahe hein 💀. But content is good 👍

  • @bishwajeetpandey1570
    @bishwajeetpandey1570 4 หลายเดือนก่อน

    1:47:18
    Actually it is possible if we log into callback of setTimeout

  • @kushagragoyal6000
    @kushagragoyal6000 4 หลายเดือนก่อน

    Event loop in node js works differently from event loop in Browser

  • @vivekchamoli4185
    @vivekchamoli4185 7 หลายเดือนก่อน +3

    Jai shree bhai ji ❤ , bhai iss cheej poochni thi jaise hum vs code me kaafi extension use krte h aur kaafi changes krte h shortcuts wagera apne hisaab se , toh me yeh chata hu ki agar me vs code dubara download kru vs code dusre pc me toh same settings rhe , toh pls batana kaise kru ya koi video bnana

    • @shivamgupta4775
      @shivamgupta4775 7 หลายเดือนก่อน +1

      extension section me jake usko disable kr do

    • @vivekchamoli4185
      @vivekchamoli4185 7 หลายเดือนก่อน

      are mtlb me chata hu ki saari settings meri jaise ki shortcuts jo meine set kiye h aur jo extension meine install kiya h woh me dusre pc me easily le lu (jaise hum phone me mail daalte h toh saara data aa jaata h essa kuch)@@shivamgupta4775

    • @AdarshSingh-hm8ss
      @AdarshSingh-hm8ss 7 หลายเดือนก่อน +2

      Settings Sync karke same account se dosre devices me login kro ho jaayega

  • @AmandeepSinghDev
    @AmandeepSinghDev 5 หลายเดือนก่อน

    Nice. Last one is not fully correct ( in the Select/Unselect All checkboxes), it will reverse the status of checkboxes.

    • @AnixSharma
      @AnixSharma 5 หลายเดือนก่อน

      what's the fix for it?

  • @krishnakantdube4299
    @krishnakantdube4299 6 หลายเดือนก่อน

    Keep it up ankit

  • @user-dd7kw3ym5i
    @user-dd7kw3ym5i 5 หลายเดือนก่อน

    nice video, I have a question why most of interview questions is the var always involved? It is recommended to not use it anymore on the real world projects.

  • @FilmyClips_YT
    @FilmyClips_YT 6 หลายเดือนก่อน +1

    Sir can you please provide the questions in the description..It will be a lot useful for quickly revising the concept.

  • @saurabh99999
    @saurabh99999 6 หลายเดือนก่อน +3

    Hi sir
    From where can we practice these types of output based questions for interviews?

    • @procodrr
      @procodrr  6 หลายเดือนก่อน

      Chat GPT

  • @Midnight-TalesYT
    @Midnight-TalesYT 7 หลายเดือนก่อน +2

    i am fresher and i know all these answers and can explain better than him , but not getting chance for interview🙂🙂

    • @procodrr
      @procodrr  7 หลายเดือนก่อน

      Did you fill the form?

  • @bishwajeetpandey1570
    @bishwajeetpandey1570 4 หลายเดือนก่อน

    Very nice and helpful

  • @user-ps5pd2xh8m
    @user-ps5pd2xh8m 6 หลายเดือนก่อน +1

    The form ProCodrr Mock Interviews is no longer accepting responses.
    Try contacting the owner of the form if you think this is a mistake.

    • @procodrr
      @procodrr  6 หลายเดือนก่อน

      No, it is not a mistake I have closed the form.

    • @chinz3614
      @chinz3614 6 หลายเดือนก่อน

      @@procodrr Sir are you not going to take any more interviews? Or if any future possibility?

  • @saurabhjaykar1603
    @saurabhjaykar1603 5 หลายเดือนก่อน

    Es bande ko 1 sal ka experience hai but ye chote chote concept nahi janata that's why companies laydoff
    I am not demotivating him but msg to everyone fcs on skills and core fundamentals things
    If you know how things worked behind the scenes you will feel confident

    • @GS7999
      @GS7999 5 หลายเดือนก่อน

      You know nothing about layoffs.. dude. Do you think people working in tech giants like the FAANG wouldn't understand these small concepts well enough to avoid being laid off?

  • @HemantKumar-kc2zx
    @HemantKumar-kc2zx หลายเดือนก่อน

    I think there is a bug in the react code.. if one of the checkboxes are checked and select all checkbox is clicked, then all the unchecked will be checked but the checked one will be unchecked

  • @factcinemaaa
    @factcinemaaa 7 หลายเดือนก่อน +4

    Sir aapki channel grow ho gyi h ab meri interview krwa do bahut dino se aapse bol rha hu 🙏

  • @rahilshaikh7899
    @rahilshaikh7899 7 หลายเดือนก่อน +1

    At the end of the interview please add the reports of every round.

    • @procodrr
      @procodrr  7 หลายเดือนก่อน

      We discuss the report of overall interview at the end of the interview.

  • @sairam_7711
    @sairam_7711 7 หลายเดือนก่อน +2

    Ankith:- I am Not Able To Figure It out ..
    Anuragh procoder:- ok 😅You can save it ,it will fix ..
    You Nailed it with your innocent smiling answer..
    I rarely Salute 🫡 the way your handling minute things …❤

    • @procodrr
      @procodrr  7 หลายเดือนก่อน

      At what timestamp I said that 😀

    • @greeneryman2699
      @greeneryman2699 6 หลายเดือนก่อน

      ​@@procodrr
      1:01:38 😅😂😂
      🌟🌟

  • @arshadahamed988
    @arshadahamed988 4 หลายเดือนก่อน

    What about object.Create() in deep copy??

  • @piyushgupta6290
    @piyushgupta6290 4 หลายเดือนก่อน +1

    Hi Anurag, Do only following this frontend interview series would prepare me enough for complete frontend engineer interviews ?

    • @procodrr
      @procodrr  4 หลายเดือนก่อน

      Yes

  • @parampassion
    @parampassion 7 หลายเดือนก่อน +1

    Hi Anurag.. nice videos can you please tell .. which software you using for interviews..?

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +1

      Meeting: Google Meet
      Recording: OBS

    • @parampassion
      @parampassion 7 หลายเดือนก่อน +1

      @@procodrr tysm ❤️

  • @techcamp_pro48
    @techcamp_pro48 7 หลายเดือนก่อน +2

    Why you take interviews use same questions daily plz change interview questions daily

  • @Devansh_Gaming67
    @Devansh_Gaming67 7 หลายเดือนก่อน +1

    sir please nodejs ki bhi video upload kr do

  • @rafortwalfer
    @rafortwalfer 7 หลายเดือนก่อน +1

    Hey Expert ! did you uploaded the tutorials on React!

    • @procodrr
      @procodrr  7 หลายเดือนก่อน

      Yes, here is the React playlist.
      th-cam.com/play/PLfEr2kn3s-bqpPUbeTZP6iRXTxTLwNB7F.html

  • @bandaumamahesh9346
    @bandaumamahesh9346 5 หลายเดือนก่อน +1

    Sir can you please suggest any good books for react

  • @nitishchoudhary5285
    @nitishchoudhary5285 7 หลายเดือนก่อน +1

    Ill like to be interviewed as well

  • @trivedi2690
    @trivedi2690 5 หลายเดือนก่อน +1

    i'm ready to pay you for mock interview could you please share a g-form or something.

  • @rushikeshavachat4282
    @rushikeshavachat4282 7 หลายเดือนก่อน +2

    Mera kab interview laoge sir. P[ease reply Anurag sir.

  • @ShaikhShaad
    @ShaikhShaad 6 หลายเดือนก่อน

    Sir Hire me.. I have 2 years experience in react, along with redux, redux toolkit, redux saga

  • @mohdsameer2445
    @mohdsameer2445 6 หลายเดือนก่อน +1

    he was good tbh

  • @LearnWithManan.110
    @LearnWithManan.110 7 หลายเดือนก่อน +1

    Sir mene Form fill kar diya he mera interview kd le rahen hen ap?

  • @codeshshubh
    @codeshshubh 6 หลายเดือนก่อน

    14:38 specificity in css

    • @_Code_crafter_
      @_Code_crafter_ หลายเดือนก่อน

      Method to target the tags

  • @anshulchoure5927
    @anshulchoure5927 6 หลายเดือนก่อน

    1 year ka experience wohh 😶‍🌫️

  • @a1tipstricks399
    @a1tipstricks399 5 หลายเดือนก่อน +1

    sir interview hinglish me bhi de sakte hai kya
    aur polytechnic studets bhi de sakte hh n

    • @srinivasselvaraj2137
      @srinivasselvaraj2137 4 หลายเดือนก่อน

      What about South Indians and North East indians

    • @srinivasselvaraj2137
      @srinivasselvaraj2137 4 หลายเดือนก่อน

      What about South Indians and North East indians

  • @VIPKFLOW
    @VIPKFLOW หลายเดือนก่อน

    Procodr have enough patience

  • @bishwajeetpandey1570
    @bishwajeetpandey1570 4 หลายเดือนก่อน

    If it is possible, I also want to give the interview for 1 year exp.

  • @niyatisharma8281
    @niyatisharma8281 4 หลายเดือนก่อน

    Sir could you please allow me google form , this is no longer

  • @akibbagwan2883
    @akibbagwan2883 5 หลายเดือนก่อน

    1:16:40 😂 ye kya baat huyi sirji😅😂

    • @procodrr
      @procodrr  5 หลายเดือนก่อน

      Kabhi kabhi hota hai 😀😀

    • @akibbagwan2883
      @akibbagwan2883 5 หลายเดือนก่อน

      @@procodrr mera bhi interview lelo sirji fresher hun interview dene me dar lagta hai…

  • @AyushKumar-yl9vx
    @AyushKumar-yl9vx 6 หลายเดือนก่อน +1

    Cascade rule I want to know

    • @procodrr
      @procodrr  6 หลายเดือนก่อน

      Watch this video.
      th-cam.com/video/eYA9n_lFTNY/w-d-xo.html

  • @niyatisharma8281
    @niyatisharma8281 4 หลายเดือนก่อน

    i want to book mock interview session

  • @pawan_tech_830
    @pawan_tech_830 7 หลายเดือนก่อน +1

    Sir what is the minimum requirement to crack an interview as a software engineer

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +1

      Master CSS and JavaScript

    • @pawan_tech_830
      @pawan_tech_830 7 หลายเดือนก่อน +1

      @@procodrr which profile will be got

    • @procodrr
      @procodrr  7 หลายเดือนก่อน +1

      Software Engineer

  • @rakshitnayyar9614
    @rakshitnayyar9614 6 หลายเดือนก่อน

    Sir Google form is not opening

  • @chetanprajapat6959
    @chetanprajapat6959 6 หลายเดือนก่อน +1

    sir mujhe interview dena h pr meri english week hai😞

  • @himanshuyadav8627
    @himanshuyadav8627 7 หลายเดือนก่อน +2

    Bhai kal car24 ka interview aap Dene gye the na wahi ho aap😂

  • @Believer-yk7th
    @Believer-yk7th 5 หลายเดือนก่อน +1

    What the fuck how he did placed Deloitte 😂

  • @viveksoni7217
    @viveksoni7217 6 หลายเดือนก่อน +2

    do u guys relly think ase interview hote hai 2024 main ..? mere se to javacript , or react main hi pucjhe hai interview main abhi tk esa bhi hota hai kya ..?

    • @talhaansari1035
      @talhaansari1035 6 หลายเดือนก่อน

      aisa bikl nhi hota kya?

  • @sbram170
    @sbram170 2 หลายเดือนก่อน +1

    is this a mock??

    • @procodrr
      @procodrr  2 หลายเดือนก่อน

      Yes

  • @randomtech5929
    @randomtech5929 5 หลายเดือนก่อน

    can you help me with a remote job, i am from pak

  • @anshu_2063
    @anshu_2063 5 หลายเดือนก่อน

    Devin ai frontend developer ka job kill kr dega ky?

  • @user-fi6sz1sf9b
    @user-fi6sz1sf9b 6 หลายเดือนก่อน

    i think there is some problem in last react problem answer. select all is have some bug like if you check 1 and uncheck others then click select all its working properly? im crt or not i dont know bro plz check it

  • @thenextgeneration4267
    @thenextgeneration4267 6 หลายเดือนก่อน +1

    Hindi me nhi de skte kya

  • @adityagaming3174
    @adityagaming3174 7 หลายเดือนก่อน +5

    bhai to bot nikla undefined nhi malum tha bot job se resign krder bkl

  • @adityas8976
    @adityas8976 6 หลายเดือนก่อน +3

    Overconfident guy with low knowledge

  • @kapiltanwar6991
    @kapiltanwar6991 5 หลายเดือนก่อน

    wow

  • @SatishPrajapati-le1cf
    @SatishPrajapati-le1cf 3 หลายเดือนก่อน

    M

  • @aalimhussain3306
    @aalimhussain3306 5 หลายเดือนก่อน

    like if you find impotance of code here

  • @shaktiman6028
    @shaktiman6028 7 หลายเดือนก่อน

    Backend developer

  • @sushantkumar-nk6kp
    @sushantkumar-nk6kp 6 หลายเดือนก่อน +2

    Sir i know html, css, js, react, react-redux-toolkit, tailwind.
    But i can't find the job. I have completed BE in 2020. How can i contact you sir. Plzzz

    • @henry3862
      @henry3862 6 หลายเดือนก่อน

      Did u give any interview? Or so intern?