2.5 Years Experienced Best React Interview

Поділитися
Вставка
  • Опубліковано 19 тра 2024
  • The Complete React Course: • The Complete React Cou...
    Complete Frontend Course: • Web Development Course...
    The Complete JavaScript Course: • The Complete JavaScrip...
    The Complete CSS Course: • Getting Started with C...
    Redux Full Course in Hindi: • Redux Fundamentals in ...
    Avinash LinkedIn: / avinash0705
    Social Media
    🌐 Telegram: t.me/procodrr
    🌐 Linkedin: / anuragsinghbam
    🌐 Instagram: / procodrr
    🌐 Twitter: / anuragsinghbam
    🌐 Portfolio: anuragsinghbam.com/
    #react #procodrr #webdevelopment #mockinterviews #frontendinterview #javascriptinterview

КОМЕНТАРІ • 30

  • @vedangnikure
    @vedangnikure 2 місяці тому +5

    At the start question seems difficult to me but I like the way this guy break the question into chunks and then solve it

  • @harshvardhanshete1170
    @harshvardhanshete1170 2 місяці тому +4

    Great Interview.

  • @vishalgangde702
    @vishalgangde702 Місяць тому

    Sir, you always take interviews in a very technical manner and give brief description about the concepts from which we get to learn a lot. Great Interview 👍👍👍

  • @merajali938
    @merajali938 11 днів тому

    excellent questions asked, please add more react interviews along with real time asked questions. Also provide us nodejs tutorial, waiting to upgrade. Thank you.

  • @sanketjaiswal76
    @sanketjaiswal76 2 місяці тому +2

    Sir i have implement the same throttle and debouce function on input feild, but i is working fine without using any usecallback why its not working in interview and working fine with me?Can anyone explain? -
    import { useState } from "react";
    function Text() {
    const [debounceinput, setdebounceinput] = useState("");
    const [throttleinput, setthrottleinput] = useState("");
    function debounce(func, delay) {
    let timeoutid;
    return (...args) => {
    if (timeoutid) {
    clearTimeout(timeoutid);
    }
    timeoutid = setTimeout(() => {
    func.apply(null, args);
    }, delay);
    };
    }
    const throttle = (func, delay) => {
    let throttleid;
    return (...args) => {
    if (!throttleid) {
    throttleid = setTimeout(() => {
    func.apply(null, args);
    throttleid = null;
    }, delay);
    }
    };
    };
    function onchangedebounce(e) {
    setdebounceinput(e.target.value);
    }
    const onchangethrottle = (e) => {
    setthrottleinput(e.target.value);
    };
    const debouncefunction = debounce(onchangedebounce, 300);
    const throttlefunction = throttle(onchangethrottle, 1000);
    return (




    Debounce :{debounceinput}


    Throttle :{throttleinput}


    );
    }
    export default Text;

  • @zaladivyarajsinhv9815
    @zaladivyarajsinhv9815 Місяць тому +2

    Avinash has such nice hairs and clear skin. wowowow

  • @Solo_playz
    @Solo_playz 17 днів тому

    One question as you said sir that managing global state without context api is not possible as redux also use it behind the scenes but what about the new state management library ZUSTAND we don't have to setup any provider or something we use import create from zustand and create the hook that manages global state
    How is zustand able to do that then??
    Is it not using any context behind the scenes?

  • @edwardgaming5681
    @edwardgaming5681 2 місяці тому +3

    I think converting modern js to older js is called transpiling not compiling.
    Therefore babel is transpiler.

    • @eng.procodrr
      @eng.procodrr  2 місяці тому

      Babel calls itself "Babel is a JavaScript compiler" you can check it on their website.

    • @cannotthinkofanybetterhandle
      @cannotthinkofanybetterhandle 2 місяці тому

      Yes you are right. But the tools nowadays use both the terms interchangeably.
      Personally, I think it is both.

    • @edwardgaming5681
      @edwardgaming5681 2 місяці тому

      @@eng.procodrr yes you are correct i have checked on their website they have mentioned as compiler.
      But then what is the difference between transpiler and compiler??
      Earlier i used to think transpiler is used to convert code from one high level to another high level language and compiler is used for converting high level code to machine level code.
      It would be great if you can explain or create a video or attach a link if there is already on your channel.
      Thanks in advance 😁

  • @irfansaeedkhan7242
    @irfansaeedkhan7242 2 місяці тому +3

    this is the best series for cracking interviews,
    do you offer private interview preparation service ?

    • @eng.procodrr
      @eng.procodrr  2 місяці тому

      I don't offer private interview preparation.

  • @sram539
    @sram539 2 місяці тому +1

    Interview is great, We need fresher interview more, pepl are more in fresher line

  • @nocode659
    @nocode659 2 місяці тому +1

    do u have any udemy course? Pls bahi

  • @rockonguitarlessons7940
    @rockonguitarlessons7940 Місяць тому

    He is my Childhood frnd and my neighbour also 💙Good job Badal

    • @Solo_playz
      @Solo_playz Місяць тому

      Badal ke naam pe jyada udh maat 😂😂

  • @Tarun-bv3em
    @Tarun-bv3em 2 місяці тому +8

    Ahh i need to improve my English speaking ability 😢

    • @sdafadsf
      @sdafadsf 2 місяці тому

      Watch English pr0nn

    • @priyankagaikwad5344
      @priyankagaikwad5344 2 місяці тому

      Same here. Only for English speaking ability is a problem from my side.

  • @MEBSonukumar
    @MEBSonukumar 2 місяці тому +2

    Sir i Am fresher may i assume this level of question in my interview or lower

    • @eng.procodrr
      @eng.procodrr  2 місяці тому +1

      Fresher will not be asked this level of questions.

  • @webdesignersandip7469
    @webdesignersandip7469 2 місяці тому +2

    I was wondering what salary range with this level of knowledge and experience one should ask for.....

  • @ishratkaur1605
    @ishratkaur1605 5 днів тому +1

    Is it just me or does the interview feel a bit difficult for 2.5 yoe ?

  • @sanjoyrakshit842
    @sanjoyrakshit842 2 місяці тому

    After see this interview she is not a 2.5 years experience React js developer because she is not work properly with react js and she use lot of unnecessary useState for this simple small project it's not good for any react application because its very small concept project when she work in very complex and big project she is not comfortably work.