2.5 Years Experienced Best React Interview

Поделиться
HTML-код
  • Опубликовано: 12 сен 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...
    #react #procodrr #webdevelopment #mockinterviews #frontendinterview #javascriptinterview

Комментарии • 34

  • @vedangnikure
    @vedangnikure 3 месяца назад +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

  • @vishalgangde702
    @vishalgangde702 2 месяца назад

    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 👍👍👍

  • @abhilashyalagandhula8496
    @abhilashyalagandhula8496 4 дня назад

    Nice interview avinash you performed well

  • @harshvardhanshete1170
    @harshvardhanshete1170 3 месяца назад +4

    Great Interview.

  • @edwardgaming5681
    @edwardgaming5681 3 месяца назад +4

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

    • @eng.procodrr
      @eng.procodrr  3 месяца назад

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

    • @cannotthinkofanybetterhandle
      @cannotthinkofanybetterhandle 3 месяца назад

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

    • @edwardgaming5681
      @edwardgaming5681 3 месяца назад

      @@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 😁

  • @zaladivyarajsinhv9815
    @zaladivyarajsinhv9815 3 месяца назад +2

    Avinash has such nice hairs and clear skin. wowowow

  • @irfansaeedkhan7242
    @irfansaeedkhan7242 3 месяца назад +3

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

    • @eng.procodrr
      @eng.procodrr  3 месяца назад

      I don't offer private interview preparation.

  • @matt112fly
    @matt112fly Месяц назад

    I'm from Europe, and European/American channels that help with interview preparation aren't as useful and knowledgable as your conent! Thank you ❤

  • @merajali938
    @merajali938 Месяц назад

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

  • @Tarun-bv3em
    @Tarun-bv3em 3 месяца назад +9

    Ahh i need to improve my English speaking ability 😢

    • @sdafadsf
      @sdafadsf 3 месяца назад

      Watch English pr0nn

    • @priyankagaikwad5344
      @priyankagaikwad5344 3 месяца назад

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

  • @sanketjaiswal76
    @sanketjaiswal76 3 месяца назад +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;

  • @techsavy5669
    @techsavy5669 9 дней назад

    Nice video. Cheers.
    😕I tried doing same example as done here using use Memo on an online react editor, it throws an error as: throttled Change is not a function

  • @sram539
    @sram539 3 месяца назад +1

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

  • @rockonguitarlessons7940
    @rockonguitarlessons7940 3 месяца назад

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

    • @Solo_playz
      @Solo_playz 2 месяца назад

      Badal ke naam pe jyada udh maat 😂😂

  • @Solo_playz
    @Solo_playz Месяц назад

    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?

  • @nocode659
    @nocode659 3 месяца назад +1

    do u have any udemy course? Pls bahi

  • @MEBSonukumar
    @MEBSonukumar 3 месяца назад +2

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

    • @eng.procodrr
      @eng.procodrr  3 месяца назад +1

      Fresher will not be asked this level of questions.

  • @Boxofficial.entertainment
    @Boxofficial.entertainment 9 дней назад

    His eyes are like a ....he is watching some where and his eye Focusing some where ,is it a AI eye Focus ?

  • @ishratkaur1605
    @ishratkaur1605 Месяц назад +1

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

  • @webdesignersandip7469
    @webdesignersandip7469 3 месяца назад +2

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

    • @imkir4n
      @imkir4n 3 месяца назад

      ;yes

  • @sanjoyrakshit842
    @sanjoyrakshit842 3 месяца назад

    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.