🔴 React Interview Experience 🔥 (Live Coding 💻) | MUST WATCH

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ธ.ค. 2024

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

  • @itscodingdoctor
    @itscodingdoctor  2 ปีที่แล้ว +10

    🔴FRESHERS PROJECTS SERIES ON #ReactJS 🔴 SHOULD I START ??
    Please Let me know here:- twitter.com/itscodingdoctor/status/1551840209871978496

    • @vinaypatil8009
      @vinaypatil8009 2 ปีที่แล้ว +2

      Please sir
      Strat fresher resume ready project + for 2 years also

    • @manojmanu5636
      @manojmanu5636 ปีที่แล้ว

      Definitely, Please start.

  • @harishg9429
    @harishg9429 2 ปีที่แล้ว +2

    @18:19 simple fix, call the function by adding parantheses (). setTimeout(object.logMessage(), 1000)

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

    now I understood, what level of confidence required in interview.

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

    Really confused at 19:00....
    Sometimes you call it directly like using small brackets inside setTimeout and sometimes outside setTimeout

  • @souravsharma2328
    @souravsharma2328 2 ปีที่แล้ว +10

    You are sharing this knowledge for free, seems like a fairytale... because of youtube algorithm I bumped into yr channel. Again, great content bro 👏

  • @harishg9429
    @harishg9429 2 ปีที่แล้ว +1

    i learnt a lot, thank you for posting this.

  • @garrysyt8461
    @garrysyt8461 2 ปีที่แล้ว +5

    Indeed it was a tough one . Loved to see how you tackled it . Hope you'll also clear it ☺️

  • @MysteryFactsHunter
    @MysteryFactsHunter 29 วันที่ผ่านมา +1

    Awesome 🎉

  • @marimuthur9456
    @marimuthur9456 21 วันที่ผ่านมา

    Marvelous😊

  • @k303k
    @k303k ปีที่แล้ว +1

    Thanks a lot for the video!!

  • @srikarravoori124
    @srikarravoori124 11 หลายเดือนก่อน +1

    Worth to watch every second

  • @DollarLachimi
    @DollarLachimi ปีที่แล้ว +1

    you are too good bro👏

  • @deepakbehera709
    @deepakbehera709 ปีที่แล้ว +1

    Awesome video

  • @puneetarora1714
    @puneetarora1714 2 ปีที่แล้ว +1

    this is some really good stuff
    nise

  • @RohitSainiHaryana
    @RohitSainiHaryana 2 ปีที่แล้ว +2

    English + Skills = 🔥🔥🔥

  • @hassaansaleem6232
    @hassaansaleem6232 ปีที่แล้ว +1

    Great video, help me alot

  • @shreyognemlekar4245
    @shreyognemlekar4245 2 ปีที่แล้ว +1

    Keep up the good work 👌

  • @jsblockchain381
    @jsblockchain381 ปีที่แล้ว +1

    great content bro

  • @ShubhamPatil-rr4on
    @ShubhamPatil-rr4on 2 ปีที่แล้ว +1

    Plz make videos like this it's awesome ♥️💻💯

  • @SarathChandran96
    @SarathChandran96 ปีที่แล้ว +2

    Javascript is an ocean. I will definitely fail these kinds of interviews

    • @amitsahgal2000
      @amitsahgal2000 ปีที่แล้ว

      Dnt have confidence then don't comment and spread negativity kaha kaha se ajate haa

    • @endangeredcreator5050
      @endangeredcreator5050 ปีที่แล้ว

      Don't give up brother

    • @itscodingdoctor
      @itscodingdoctor  ปีที่แล้ว +2

      Don't worry. Take your time and prepare well.
      Just try to start with the basics of javascipt and then slowly move to advance concepts.

  • @jayeshshrivastava5424
    @jayeshshrivastava5424 2 ปีที่แล้ว +3

    I am a fresher and interested to get a job as a react dev, I am familiar with the basics of react from props to hooks, but I haven't learnt class components. So what to learn next?
    Also can you please share any fresher interview or commonly asked from fresher's?

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Here you go MNC Interview Experiences: th-cam.com/play/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc.html

  • @ramprasadboddu2551
    @ramprasadboddu2551 ปีที่แล้ว

    Can we use useRef instead useDebounce
    hook?

  • @rahuldotel5983
    @rahuldotel5983 2 ปีที่แล้ว +4

    did it as if I was too in this interview and i came up with this
    import { useRef } from "react";
    const App = () => {
    const timeOutRef = useRef(null);
    const onChange = (e) => {
    if (timeOutRef.current) {
    clearTimeout(timeOutRef.current);
    }
    timeOutRef.current = setTimeout(() => {
    console.log(e.target.value);
    }, 400);
    };
    return ;
    };
    export default App;

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +2

      Great bro! Thanks for sharing it.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +3

      Doing questions considering that you are also in interview, one of the best way to learn.
      Keep it up 🙂

  • @igboanugwocollins4452
    @igboanugwocollins4452 2 ปีที่แล้ว +1

    Good one

  • @ronn004
    @ronn004 2 ปีที่แล้ว +1

    this one really awesome.

  • @15lopa
    @15lopa 2 ปีที่แล้ว +3

    Everything is fine bro but debounce logic is not ok.
    Every time when user put something in input it will delay for 300 ms
    U need to call the debounce hook for every key stroke and if within 300 ms next key stroke comes it will cancel previous one and will reset the delay.
    Simple modification is required.
    By the way thanks for sharing.
    Best of luck buddy.
    Hope u will get the call.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +3

      Glad to see the amount of attention you paid.
      It's a good finding. Let me check and revert.
      Keep learning!

    • @TheAditya64
      @TheAditya64 2 ปีที่แล้ว

      Well 300ms is not much but additional check like you explained can come handy for sure in the forms when you have too many inputs to fill

    • @mother_chucker12
      @mother_chucker12 ปีที่แล้ว

      Hi, sorry, but isn't that already happening? Or am I missing something?
      The state gets changed, which causes the debounceValue timeout to be reset on each key stroke. Its not delaying 300ms + 300ms + 300ms... its reseting it.

  • @meezanshaikh7159
    @meezanshaikh7159 2 ปีที่แล้ว +1

    can you please attach the codepen link or something from next time for. the entire interview ... it'll be really helpful.

  • @victorkeb
    @victorkeb 2 ปีที่แล้ว +1

    very nice thank you

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Thanks 😊

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +1

      You can find more here MNC Interview Experiences: th-cam.com/play/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc.html

  • @skzahirulislam2820
    @skzahirulislam2820 ปีที่แล้ว +1

    Which company bro?

  • @shubhambhushan338
    @shubhambhushan338 ปีที่แล้ว

    which company interview ?

  • @TheAditya64
    @TheAditya64 2 ปีที่แล้ว +1

    Nice, good job

  • @lalithrockz
    @lalithrockz 2 ปีที่แล้ว +1

    Isn't the whole virtual dom updated and then compared to the real dom so that difference is applied to the real dom?

  • @3minutesbibletruth
    @3minutesbibletruth ปีที่แล้ว +1

    Can you please build bank app for us

  • @vickychauhan5396
    @vickychauhan5396 2 ปีที่แล้ว +3

    Bro how to learn JavaScript ?what is the right way so we can gain confidence and crack interview . Please suggest

    • @satishv1994
      @satishv1994 2 ปีที่แล้ว

      Follow @codewithharry

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +3

      I can suggest two good resources.
      1. Learn from here:- javascript.info/
      2. Practice here:- edabit.com/challenges/javascript
      These two resources are my personal favoutire.

  • @zathkal4004
    @zathkal4004 2 ปีที่แล้ว

    Bro could you please explain again as to why state should not be updated/altered directly?
    Many thanks in advance (:

  • @mugilankathavarayan8168
    @mugilankathavarayan8168 ปีที่แล้ว +1

    Super bro

  • @gulrezeqbal3048
    @gulrezeqbal3048 2 ปีที่แล้ว +1

    How much experienced u have in react?

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      These questions applies for experience of more than 2 years

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +1

      Nagarro asks tough questions

  • @atanujana8119
    @atanujana8119 2 ปีที่แล้ว +1

    Can you tell me how to apply Or from where we can apply?

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

    react video and gives him typescript...

  • @shalukumari3151
    @shalukumari3151 2 ปีที่แล้ว +1

    Hii,
    I am currently working as web developer in react js library from last 2.5 year . And I want to change my company .
    Please tell me the detailed hiring process of nagarro. And where i can apply it will helps me alot.
    Thankyou🙂

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +1

      Great!
      1st online round:- English MCQ questions
      2nd online round:- 2-3 JavaScript coding questions
      3rd:- First round of technical interview
      4th:- Second technical round
      5th:- HR/MANAGERIAL
      You can apply via Naukari or LinkedIn or Nagarro website
      For any other questions please comment.

    • @shalukumari3151
      @shalukumari3151 2 ปีที่แล้ว

      Thank you 🙂

    • @MrAditya9019
      @MrAditya9019 2 ปีที่แล้ว

      @@itscodingdoctor How can we prepare for coding questions, 2nd round

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Practice coding questions. Specially array and objects questions

  • @navaneeth6157
    @navaneeth6157 2 ปีที่แล้ว

    Is this for remote or on campus?
    Also is it possible for 1st year college student to get selected?
    Thanks in advance

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +1

      It's a remote job.
      it all depends on the Job requirements. You may get an internship, provided you are good at coding.

  • @dipanshusabharwal
    @dipanshusabharwal 2 ปีที่แล้ว +1

    Baaki sab to theek hai, par ye clickbait thumbnail kyu lgai ? Be classy.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      I want to encourage girls also, TO CODE ✌

    • @dipanshusabharwal
      @dipanshusabharwal 2 ปีที่แล้ว

      @@itscodingdoctor you just lost my respect.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      What happened bro? I didn't mean it.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Bhai to get your respect back I'll update the thumbnail. I had never thought about clickbait.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      @@dipanshusabharwal Updated the thumbnail.

  • @ShubhamPatil-rr4on
    @ShubhamPatil-rr4on 2 ปีที่แล้ว

    But here one problem English , we are not fluent in English😒

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Bro, I understand.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Try to listen the answers again and again. It would give you the confidence.

    • @ShubhamPatil-rr4on
      @ShubhamPatil-rr4on 2 ปีที่แล้ว +1

      @@itscodingdoctor not bro I can understand lot of accent in English I can totally understand English.
      But problem when we explaine in interview I can't explain in English 😒

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      You know what bro, then it's just interview pressure which makes you feel you can't explain in English.

    • @ShubhamPatil-rr4on
      @ShubhamPatil-rr4on 2 ปีที่แล้ว

      @@itscodingdoctor I have question brother, if interviewer ask me to explain some consept, It will be really helpfull to explain on codesentbox than explain therotically.
      What's your opinion..?

  • @rajeevranjan8434
    @rajeevranjan8434 2 ปีที่แล้ว

    2 week pehle fresher ka video
    Ab 4 year experience ka video
    Kya mazak h

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +3

      Bro I keep giving Interviews to test my knowledge. And to see what kind of questions are asked at different levels of experience. So that I can provide those interview videos to you guys.
      I'm a experienced react developer.

  • @rishavmehta6008
    @rishavmehta6008 2 ปีที่แล้ว +1

    questions are good....were you selected???

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      Waiting for the result 🤞

    • @rishavmehta6008
      @rishavmehta6008 2 ปีที่แล้ว +1

      @@itscodingdoctor You'll definitely get selected. All the best bro.

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +1

      Thanks buddy!

  • @surendravaddi9630
    @surendravaddi9630 2 ปีที่แล้ว

    Exp?

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว

      4

    • @piyushchopade7878
      @piyushchopade7878 2 ปีที่แล้ว +1

      @@itscodingdoctor How much of this is expected from a fresher?

    • @itscodingdoctor
      @itscodingdoctor  2 ปีที่แล้ว +1

      For fresher, interview won't be this hard. If you good at basics of react and JavaScript, You are good to go!
      Try to build 2-3 react projects and practice javascript coding questions.

  • @澳贼
    @澳贼 ปีที่แล้ว

    geee, i'm surprised u passed the interview. you misunderstood some basic concepts.