𝐅𝐫𝐨𝐧𝐭 𝐄𝐧𝐝 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐞𝐫 𝐈𝐧𝐭𝐞𝐫𝐯𝐢𝐞𝐰 | 𝐄𝐱𝐩𝐞𝐫𝐢𝐞𝐧𝐜𝐞𝐝(𝟑 𝐲𝐞𝐚𝐫𝐬 )

Поділитися
Вставка
  • Опубліковано 11 січ 2025

КОМЕНТАРІ • 42

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

    Those who want to give mock interview can mail on practicemocks223@gmail.com OR rdev67891@gmail.com.
    I have around 2.5 years of experience in Frontend development and given around 100+ interviews.
    I know what it takes to crack the interview and I will be able to guide you accordingly as per the industry standards.
    After your interview, feedback will be given to you personally in the way you can give better interviews in the near future.
    Feedback includes:
    1.Your doubts
    2.Which are the resources that can help you to grow?
    3.What are the things or the skills required you to give an edge above other candidates for job selection?
    4.Where you can apply for jobs, etc and many more...

  • @kishanraj8673
    @kishanraj8673 3 місяці тому +29

    I hate this type of interviews, its okay to ask 3 or 4 trick questions, but no where in real world we will use all these.

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

      bro try to understand i faced more difficult questions compare to this , its gives us knowledge and we wont do mistake , it makes us perfect

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

      Yes I know its not real, even in some real interview they ask just coding without even touching other things or asking real world questions

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

      interview qns are not just about what applications are in real world, these are just to know that how much are u about the way of working of language

  • @aryankhandelwal15
    @aryankhandelwal15 15 днів тому

    function printAlt(str,str2){
    let len = str.length
    let len2 = str2.length;
    let max = Math.max(len,len2);
    let res = ""
    let pt = 0;
    while(pt

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

    function stringAndNumber(a,b) {
    let loop = a.length > b.length ? a : b
    let res=""
    for(let item in loop) {
    let x = a[item] ? a[item] : ""
    let y = b[item] ? b[item] : ''
    res = res + x + y
    }
    console.log(res)
    }
    stringAndNumber(str,str2)

    • @LatestLaws
      @LatestLaws 22 дні тому

      First you need to convert param value in string then length property will work

  • @saketshinde7871
    @saketshinde7871 5 місяців тому

    Thanks for such interview videos! Really helpful...

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

    Sharp questions that probe both fundamental knowledge and problem-solving approach. Refreshing to see an interviewer focus on essentials rather than trivial or overly time-consuming queries.
    Well done to the interviewer for getting straight to the point. ❤

  • @kushpathak4097
    @kushpathak4097 3 місяці тому +5

    Frontend interview but all you asked is trick js questions

    • @reactjsdeveloperinterview
      @reactjsdeveloperinterview  3 місяці тому

      Yes, I wanted to continue with React questions but due to time constraint, we couldn't continue the interview.

  • @subrotomukherjee8571
    @subrotomukherjee8571 5 місяців тому +3

    Json stringify to match the condition of objects

  • @aryankhandelwal15
    @aryankhandelwal15 15 днів тому

    19:22 i did not know that and how to make first condition true in test function in previous question

    • @rashikaveera3432
      @rashikaveera3432 10 днів тому +1

      function test(record){
      if(record==JSON.stringify({age:28})){
      console.log(`You're an adult`)
      }
      else if(record==={age:28}){
      console.log(`You're still an adult`)
      }
      else{
      console.log("No record")
      }
      }
      test(JSON.stringify({age:28}))

    • @aryankhandelwal15
      @aryankhandelwal15 10 днів тому

      @rashikaveera3432 ty

  • @jiteshjoshisde3154
    @jiteshjoshisde3154 4 місяці тому

    Can you share the all the interview questions that you commented ??

  • @er.akashdeepsingh9070
    @er.akashdeepsingh9070 4 місяці тому

    Brother,How much experience do you have?

  • @Wakpinside
    @Wakpinside 6 днів тому

    im so incredibly confused

  • @aryankhandelwal15
    @aryankhandelwal15 15 днів тому

    r u sure he has 3 years of experience?

  • @BabjiVunna
    @BabjiVunna 5 місяців тому +1

    Very useful content

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

    sir is this the normal level of interview? like what is it beginner ,Intermediate or expert?

  • @BEOriginal1
    @BEOriginal1 4 місяці тому

    5:32 strictly check mode

  • @BEOriginal1
    @BEOriginal1 4 місяці тому +1

    Bhai iska interview schedule kaise ho gya😊

  • @akash_gupta_2090
    @akash_gupta_2090 5 місяців тому +3

    what 's the solution of this code
    function test(record) {
    if(record == {age:28}) {
    console.log("you are 28")
    } else if(record === {age:38}) {
    console.log("you are 38")
    } else {
    console.log("no record")
    }
    }
    // test({
    // age:28
    // })
    how to pass data to test function

    • @Hemu146
      @Hemu146 5 місяців тому

      could you please explain.
      output shows "no record" and theres a warning in [ else if (===) ]

    • @saurabhu6458
      @saurabhu6458 5 місяців тому

      objects are not comparable because they hold different reference in memory

    • @saurabhu6458
      @saurabhu6458 5 місяців тому

      Data is already passed in test function

    • @jacksoyer556
      @jacksoyer556 4 місяці тому

      else if (record.age == 28) {
      console.log("BLUD you are still an adult");
      }

    • @jordan_heartz
      @jordan_heartz 4 місяці тому

      function isEqual(obj1, obj2) {
      return JSON.stringify(obj1) === JSON.stringify(obj2);
      }
      function test(record) {
      if (isEqual(record, { age: 28 })) {
      console.log("You are an adult");
      } else {
      console.log("No Record");
      }
      }
      test({ age: 28 });

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

    Is this 3 years of experience? Looks like 6 months tho

  • @ateek-r2q
    @ateek-r2q Місяць тому +1

    I also hate this interview no usage.. if it is a real interview then provide the answer also..

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

    First quations was too easy and it is basic to know ,

  • @er.akashdeepsingh9070
    @er.akashdeepsingh9070 4 місяці тому

    Plz share these question also

  • @Farooque7866
    @Farooque7866 4 місяці тому

    Bro 50lpq ka package tha ky itna questions puch liya😂😂

  • @rishiraj2548
    @rishiraj2548 5 місяців тому

    🙂👍🏻