𝐅𝐑𝐄𝐒𝐇𝐄𝐑'𝐒 𝐅𝐫𝐨𝐧𝐭 𝐄𝐧𝐝 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐞𝐫 𝐈𝐧𝐭𝐞𝐫𝐯𝐢𝐞𝐰 𝐍𝐨 - 𝟎𝟕 | ReactJS, Javascript, HTML,CSS,Redux

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

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

  • @AmirKhan-uh5vd
    @AmirKhan-uh5vd 3 หลายเดือนก่อน +269

    Thanks for the interview, Sir. I cracked a company last week

    • @reactjsdeveloperinterview
      @reactjsdeveloperinterview  3 หลายเดือนก่อน +28

      Congrats👏

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน +3

      @@reactjsdeveloperinterview Thank you Sir

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

      ​@@AmirKhan-uh5vd which one bro

    • @vivekharinkhede4121
      @vivekharinkhede4121 19 ชั่วโมงที่ผ่านมา

      Aap hee interviewer ho video mein ​@@AmirKhan-uh5vd

  • @Dev-LalitRajput
    @Dev-LalitRajput 4 หลายเดือนก่อน +178

    I will watch interviews from now on instead of watching tutorials.
    Thank you for uploading it as a post.
    For freshers, its not just a post its a potential unlocker video.
    Really helpful for upscaling the base knowledge.
    Respect++

  • @Vivek-gt4gm
    @Vivek-gt4gm 4 หลายเดือนก่อน +86

    //Marge two string
    let str1 = 'Hello'
    let str2 = 'World'
    //output = HWeolrllod;
    let bag = '';
    let i =0;j=0;
    while(i

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

      in the second condition use j

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

      let str1 = 'Hello'
      let str2 = 'World'
      //output = HWeolrllod;
      let ans="";
      for(let i=0;i

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

      No need two variables i and j, lmao. You just check if (str1[i] && str2[i]) are undefined then exit loop.

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

      const str1 = 'hello'; const str2 = 'world';
      let str = ''; let i = 0;
      let str2new = ''; let str1new = '';
      if (str1.length < str2.length) {
      str2remain = str2.slice(str1.length);
      let str2new = str2.slice(0, str1.length);
      for (; i < str1.length; i++) {
      str += str1[i];
      str += str2new[i]
      }
      str += str2remain
      } else if (str2.length < str1.length) {
      str1remain = str1.slice(str2.length);
      let str1new = str1.slice(0, str2.length);
      for (; i < str2.length; i++) {
      str += str2[i];
      str += str1new[i]
      }
      str += str1remain
      } else if (str1.length === str2.length) {
      for (; i < str2.length; i++) {
      str += str1[i];
      str += str2[i];
      }
      };
      console.log(str)

    • @jogdis_h
      @jogdis_h 15 วันที่ผ่านมา

      What was that i can't even understand single word😂😂😂 I will never able to understand that😂😂

  • @shibakarmakar7030
    @shibakarmakar7030 4 หลายเดือนก่อน +273

    It's not a real interview. It's a self interview but he delivered a good example interview.

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

      how did you know that it wasn't a real interview?😅

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

      @@aaishteru6709 Thanks got it 👍🏻

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

      yeah, this is a practice interview

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

      Interviewer video on rakhta hai bhai and thoda serious tone me baat karta hai, ye samne vala college ka student lag rha.​@@sumitjadhav1054
      Sahi hai lekin fir bhi, example ke liye badhiya effort

    • @upendrachauhan5260
      @upendrachauhan5260 5 วันที่ผ่านมา

      I told him so😊

  • @_Fancy_Bear_
    @_Fancy_Bear_ 4 หลายเดือนก่อน +35

    Don't take it hard solve like a puzzle just split up the problem and solve the splited problem in code and merge the problem and merge the code boom you got it... in merge string just split problem two concate alternate string so you can use loop for minimum length string after run balance extra string we will concate it to final result using substring method...

  • @journalslastpage
    @journalslastpage 4 หลายเดือนก่อน +43

    20:00 Merge String alternately
    let s1 = "Hello123456";
    let s2 = "World";
    let finalStr = "";
    for (let i = 0; i < (s1.length > s2.length ? s1.length : s2.length); i++) {
    if (i < s1.length) finalStr += s1.charAt(i);
    if (i < s2.length) finalStr += s2.charAt(i);
    }
    console.log(finalStr);

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

      function mergeAlternatively(str1, str2) {
      let result = '';
      const maxLength = Math.min(str1.length, str2.length);
      for (let i = 0; i < maxLength; i++) {
      result += str1[i] + str2[i];
      }
      return result;
      }
      const str1 = "hello";
      const str2 = "world 1234";
      const merged = mergeAlternatively(str1, str2);
      console.log(merged);

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

      Appreciated 👍🏻 ​@@James_Bond627

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

      " i < (s1.length > s2.length ? s1.length : s2.length)" bro instead of this can't we just write "i < (s1.length)", i already run it showing no error, please tell why you did that ??? thank you.

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

      for the case when second string is longer than the first string. The logic of the for loop I wrote runs for the length of the largest string, so that all the characters from both the strings are traversed.

  • @Chiby5570
    @Chiby5570 4 หลายเดือนก่อน +16

    const str1 = "abc2";
    const str2 = "xyz13";
    function addString(str1, str2) {
    let minStr = Math.min(str1.length, str2.length);
    let res = "";
    for (let i = 0; i < minStr; i++) {
    res += str1[i];
    res += str2[i];
    }
    str1.length > str2.length
    ? (res += str1.substring(minStr, str1.length))
    : (res += str2.substring(minStr, str2.length));
    return res;
    }
    const res = addString(str1, str2);
    console.log(res);

  • @somaprakashrath1
    @somaprakashrath1 4 หลายเดือนก่อน +146

    Bro.. the question of == and === came in the morning interview. Thanks 🤗

    • @gwwyy_
      @gwwyy_ 4 หลายเดือนก่อน +5

      Dude why do we use === Tell me

    • @somaprakashrath1
      @somaprakashrath1 4 หลายเดือนก่อน +15

      @@gwwyy_ It checks if two operands are equal in the both value and in the type.

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

      @@somaprakashrath1 ok bro thaku

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

      @@gwwyy_ wlcm bro. And Be successful in your life ☺️

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

      Where did you apply, lol I'm not getting any interview calls

  • @saketshinde7871
    @saketshinde7871 4 หลายเดือนก่อน +16

    Fantastic interview! Really helpful...

  • @rehankarol7453
    @rehankarol7453 4 หลายเดือนก่อน +11

    const array = [1,[3,4],[6,[7,8]]]
    const stack = [...array]
    const res =[]
    while(stack.length){
    const pope = stack.pop();
    if(Array.isArray(pope)){
    stack.push(...pope)
    }else{
    res.push(pope)
    }
    }
    console.log(res.reverse())
    //Flat array

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

      const arr=[[1,2],[2,3],[3,4]];
      function arr1(arr){
      let arr1=[]
      for (let i=0;i

  • @misturoy-b7u
    @misturoy-b7u 2 หลายเดือนก่อน +24

    Student communication is Better then interviewer

  • @theinfinityx2236
    @theinfinityx2236 4 หลายเดือนก่อน +3

    I guess Passing null will cause an error, because i guess react expects the dependency array to be an array or to none so Null won't be valid for it! The no dependency will cause it to run after every render and empty -once on mount

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

    Bhai string marge wale question bhut aasan tha like 5 min me ho gya tha and bhut simple logic bhi tha, aapne kuch jada hi hard kar diya use or gor se deekho uska ans fir bhi glt hi aaya hai extra 'o' aaya hai usme , but bo bat hai ki thoda pressure environment ki bat ho jata hai, barna aap bhi bad me krke dekhte to badi aasani se ho jata

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน +1

      Okay bhai, Abbi toh practice kr rha hu

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน

      Okay bhai, Abbi toh practice kr rha hu

  • @SCRIPTSAG
    @SCRIPTSAG 4 หลายเดือนก่อน +3

    It’s good but this is planned interview i think but this is good way to present himself

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

    finest one keep doning thankyou

  • @awinbmx7418
    @awinbmx7418 27 วันที่ผ่านมา +3

    People who copy and paste code have fun when this interview comes

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

    20:00
    const str1 = "Hello";
    const str2 = "World";
    function merge2Strings() {
    let arr1 = [...str1];
    let arr2 = [...str2];
    let i = 0;
    let length = arr1.length > arr2.length ? arr1.length : arr2.length;
    let res = "";
    while(i < length) {
    if(arr1[i]) res += arr1[i]
    if(arr2[i]) res += arr2[i]
    i++;
    }
    return res;
    }
    console.log(merge2Strings());

  • @deepthib7588
    @deepthib7588 16 วันที่ผ่านมา

    At 37:01, it's taking null value of str1 as undefined

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

    31:51
    const str1 = "Hello"
    const str2 = "World 123"
    function mergeString(str1, str2) {
    //HWeolrllod 123
    let result = ""
    let i = 0
    for (i; i < str1.length && i < str2.length; i++) {
    result += str1[i] + str2[i]
    }
    result += str1.substring(i) + str2.substring(i)
    return result
    }
    console.log(mergeString(str1, str2))

  • @uneogamer6499
    @uneogamer6499 26 วันที่ผ่านมา

    We can also use VSCode lsp signatures to guess the output.

  • @al-baghdadi7914
    @al-baghdadi7914 4 หลายเดือนก่อน +3

    10:35 , it will give true

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

    I'm really scared. What if don't come up with the answer in the interview😢

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

      It's fine! You will only improve once you face such type of interviews.

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

    Thanks for sharing. I love Ladakh. Good luck with your YT channel.

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

    function mergeStrings(param1, param2) {
    let mergeStr = "";
    let maxlength = Math.max(param1.length, param2.length);
    let suffix = "";
    let sortlength = Math.min(param1.length, param2.length);
    if (param1.length < param2.length) {
    suffix = param2.slice(param1.length, param2.length);
    } else {
    suffix = param1.slice(param2.length, param1.length);
    }
    for (let i = 0; i < sortlength; i++) {
    mergeStr = mergeStr.concat(param1[i], param2[i]);
    }
    if (suffix != "") {
    mergeStr = mergeStr.concat(suffix);
    }
    return mergeStr;
    }
    let str1 = "hello";
    let str2 = "worldABC";

  • @toonvibescartoon
    @toonvibescartoon 3 หลายเดือนก่อน +4

    hey , how much lpa can we expect from this interview ????

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

    9/10 very good

  • @bholaamahto
    @bholaamahto 4 หลายเดือนก่อน +8

    This interview was for freshers or experience?

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

      Fresher

    • @rutaborate9135
      @rutaborate9135 22 วันที่ผ่านมา

      Could you record same interview for 2,3 yr experienced ppl​@@reactjsdeveloperinterview

  • @_Fancy_Bear_
    @_Fancy_Bear_ 4 หลายเดือนก่อน +3

    const str1='hello';
    const str2='world1234';
    let str3='';
    const Merge = () =>{
    const min=Math.min(str1.length,str2.length)
    console.log(min);

    for(let i=0;istr2.length) {
    str3+=str1.substring(min);
    }
    else{
    str3+=str2.substring(min);
    }
    }
    console.log(Merge(str1,str2))
    console.log(str3);
    Merge String alternatively 20:00

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

    Thanks

  • @49_princemaurya
    @49_princemaurya 4 หลายเดือนก่อน +4

    2:17 what will function return
    function fun1() {
    return 2
    }
    function fun2() {
    return 4
    }
    let a = (fun1(), fun2());
    console.log(a);
    The comma operator is used here: (fun1(), fun2()), The comma operator executes both functions, but only the result of the last expression is returned.
    In this case:
    1. fun1() is called first and returns 2, but this result is ignored.
    2. fun2() is called next and returns 4, which is the value assigned to 'a'.

  • @ayanchatterjee7599
    @ayanchatterjee7599 3 หลายเดือนก่อน +1

    sir can u tell me how much java script do i have to do to before learning react

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

    Can you do an interview for Back End Developer

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

    let arr = [[1, 2,[7,8]], [3, 4], [5, 6]]
    function flatArray(arr) {
    let res = []
    for (let i = 0; i < arr.length; i++){
    if (Array.isArray(arr[i])) {
    res.push(...flatArray(arr[i]))
    } else {
    res.push(arr[i])
    }
    }
    return res
    }
    console.log(flatArray(arr));

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

    Can anyone explain this? 44:52

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

    Very helpful interview even though it is not real interview

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

    47:05 Flatten Array without in built functions
    const arr = [[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]];
    let resultArr = [];
    function arrayFlatten(val) {
    if (Array.isArray(val)) val.forEach(arrayFlatten);
    else resultArr.push(val);
    return resultArr;
    }
    console.log(arrayFlatten(arr));

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

    Excellent

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

    Can you provide the file that he is working on

  • @debjitdas1470
    @debjitdas1470 29 วันที่ผ่านมา

    Bro u just ace it man

  • @RatanBasak-f8h
    @RatanBasak-f8h หลายเดือนก่อน

    I am not satisfied with the 1st answer,
    The variable a is not assigned twice,
    2 , 3 , 'hello' // this expression returns the last value ('hello') because of the comma operator

  • @RK-cj7vq
    @RK-cj7vq 2 หลายเดือนก่อน

    In JavaScript, the == operator performs type coercion when the types of the operands differ. Here’s what happens step-by-step:
    JavaScript sees that '1' (a string) and 1 (a number) are being compared.
    The == operator coerces the string '1' into the number 1.
    Now, both sides of the comparison are 1, so JavaScript evaluates '1' == 1 as true.So, console.log('1'==1) gives True as output

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

    What package they offered you?

  • @Uuggubuggu
    @Uuggubuggu 25 วันที่ผ่านมา

    I'm 19 rn and want to start with full stack web dev I'm passionate about it but I'm not confident in myself.....what should i do? I wanted to take drop from college because it's providing me with nothing cuz I'm not interested in studying commerce, I'm interested in coding since i was 15 but didn't really know where to start also my parents didn't support me and thought it was just a fling,.....I'm really demotivated and lost..

    • @reactjsdeveloperinterview
      @reactjsdeveloperinterview  22 วันที่ผ่านมา

      I can't comment about whether you should leave commerce or not but what I can suggest you is try to give 2 hours daily for coding and check for next 6 months.If you get joy even after coding for 6 months, then you should go ahead with the coding.

  • @bhargavimopuru8576
    @bhargavimopuru8576 7 วันที่ผ่านมา

    const arr=[[1,2],[3,4],[5,6]]
    const b=[]
    for (let i of arr){
    if (typeof(i)==='object'){
    for (let j of i){
    b.push(j)
    }
    }
    else{
    b.push(i)
    }
    }
    console.log(b)

  • @tinolbhoyar4646
    @tinolbhoyar4646 4 หลายเดือนก่อน +5

    Isn't the interview bit long 20 30 mins is enough

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

      no according to this job market it is sufficient

  • @al-baghdadi7914
    @al-baghdadi7914 4 หลายเดือนก่อน

    While(true){
    console.log('over hear..');
    }

  • @shujanomaan4011
    @shujanomaan4011 3 หลายเดือนก่อน +19

    Bhai meko dekh ke darr lag raha abb interview Dene se 😭😭

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

      Dete time darne ka nahi bus dene ka
      Interview

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

      ​Lol😂@@patangbaaz8989

  • @Purnachandhar-S
    @Purnachandhar-S 3 หลายเดือนก่อน

    his voice is very loud and clear ,,,what is the headphones his using?

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

      razer heaphones it is

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน

      I was using Razer BlackShark V2 X

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

      Bhai job lagi salary kitni expect karte ho??​@@AmirKhan-uh5vd

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

    What was the package for this interview

    • @Jha.rishabhhh
      @Jha.rishabhhh 3 หลายเดือนก่อน

      ₹101k

    • @abictor3312
      @abictor3312 5 วันที่ผ่านมา

      ​@@Jha.rishabhhh 1.1 lpa ?

  • @dark_unknown69
    @dark_unknown69 15 วันที่ผ่านมา

    Easiest interview ever witnessed

  • @memecomplications8318
    @memecomplications8318 22 วันที่ผ่านมา

    Sir I am an under graduate ba general student and I have 3 years of gap for family reasons...can I start a different career like a software developer ?

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

    function merge(str1, str2) {
    let mergeStr = "";
    for (var i = 0; i < (str1.length + str2.length); i++) {
    if (i < str1.length)
    mergeStr = mergeStr + str1[i];
    if (i < str2.length)
    mergeStr = mergeStr + str2[i];
    }
    console.log(mergeStr);
    }

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

    const arr=[[1,2],[2,3],[3,4]];
    function arr1(arr){
    let arr1=[]
    for (let i=0;i

  • @Gogeta_46
    @Gogeta_46 4 หลายเดือนก่อน +5

    After watching this interview I'm scared I'm in 1st year of college and this looks so hard furthermore it's for freshers and they are asking so many complicated questions

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

      I can teach you

    • @reactjsdeveloperinterview
      @reactjsdeveloperinterview  4 หลายเดือนก่อน +6

      It's natural to feel like that! You have time in your hand. Just try to improve by 0.5% everyday.

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

      @@reactjsdeveloperinterview I just took addmission in computer science, so do I have enough time? And if yes then please please help me a bit I have so many questions to ask

  • @spidermankey1398
    @spidermankey1398 3 หลายเดือนก่อน +1

    function merge(s1, s2) {
    let s3 = ''

    let i = 0
    let j = 0

    while (i < s1.length || j < s2.length) {
    let p = s1[i++]
    if(p != undefined) s3 += p

    p = s2[j++]
    if(p != undefined) s3 += p
    }

    return s3
    }
    Can this be also the answer cause i tried to be faster and did not optimize

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

    Look - I wrote - the word "Function?" It don't - give any f(x) -- TTY-- you only!

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

    can someone explain 44:39 ?

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

      Please someone explain this. I think the interviewer was just asking to provide another currying function?

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

      This is what I believe would work...
      function sum(a, b) {
      if (b !== undefined) {
      // If the second argument is provided, return the sum directly
      return a + b;
      } else {
      // If only one argument is provided, return a function that takes the second argument
      return function(b) {
      return a + b;
      };
      }
      }

  • @HarshJipkate
    @HarshJipkate 3 หลายเดือนก่อน +1

    easy solution for merge string bro -
    const a = "Hello"
    const b = "World 1234"
    var ans = ''
    for(let i = 0; i < Math.max(a.length, b.length); i++){
    if(i < a.length){
    ans += a[i]
    }
    ans += b[i]
    }
    console.log(ans)

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

      no this is mistake bro... you cannot have number

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

    hello sir i wnat know the ans of sum((2)(3))
    sum(2,3)

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

    Is frontend developer still good to learn now? If I start learning today will I get job?

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

      Yes! Why not...Please go ahead if you have the passion for development...

  • @kartikkhandelwal888
    @kartikkhandelwal888 3 วันที่ผ่านมา

    bhai shilong or mango?😅

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

    What was the package for this job interviewed for?

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

      50 cr

    • @abictor3312
      @abictor3312 5 วันที่ผ่านมา

      ​@@Kanha_kanhaasachme?

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

    Salary??

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

    bro can you tell me the headphone model bro... really helpful.......

    • @J-hf8ng
      @J-hf8ng 4 หลายเดือนก่อน

      Razer BlackShark v2 i guess

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

      @@J-hf8ng thanks bro... I find it using Amazon scanner.....

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน

      Razer BlackShark V2 X

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

    What will be the package
    If you selected after this level of fantastic interview???
    Please reply

    • @abbasali9730
      @abbasali9730 3 หลายเดือนก่อน +1

      3lpa

    • @techgaming252
      @techgaming252 3 หลายเดือนก่อน +1

      2.15 lpa

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

      2lpa

    • @abictor3312
      @abictor3312 5 วันที่ผ่านมา

      I cracked one with 4.2 lpa with just basic html css js

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

    Dolly Chai Wala Nothing Do this .😅😢

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

    To the Interviewer: You're testing the candidate for his basic concepts of JS deeply. I've learnt new things and I thank you for that.
    But, when they don't answer a question or give wrong answer. kindly explain him the answer. pls don't be like, it's not my headache, 'you figure it out later'

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

      Hi,
      I hope you are doing good. After the interview, I ask every candidate whatever doubts he had regarding the questions asked in the interview or any queries regarding Frontend development personally. As I am taking the interview, it should feel like an interview and not question answer session. I may answer one or two questions here and there but not all the questions.

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

      @@reactjsdeveloperinterview thanks for letting me know. Sorry if I was rude.
      if you can answer in the video itself, viewers can also learn

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

      @@gsmfurqan6509 No worries. If any queries are there, you can ask me in the comment section. I may reply late as I have my corporate work to look into.

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

    Bhai fresher k liye Etna lamba interview kon karta h

    • @ChordCraft-u9w
      @ChordCraft-u9w 2 หลายเดือนก่อน

      Exactly max 30-35 minutes if all goes well..

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

    Ye Fresher ke liye h 😳

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

      Yes! I asked him few hard level questions because the candidate was able to answer simple to moderate level questions easily,

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

    Omo 😂😂😂God help me

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

    How come ur allowed to wear headphones 😂

  • @Huzaifakhan-0
    @Huzaifakhan-0 2 หลายเดือนก่อน +2

    its a fake interview bro

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

    bros more educated ig

  • @aysuh-n3g
    @aysuh-n3g 4 หลายเดือนก่อน

    Damn man its illogical to say that == not check data type just learn about type corecion.

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

      In JavaScript, the == operator performs a comparison between two values after converting them to a common type. This process is known as type coercion. Because == doesn't check the data type(your answer goes here), it can sometimes lead to unexpected results.

    • @aysuh-n3g
      @aysuh-n3g 4 หลายเดือนก่อน

      @@GG_SYMBIOTE claps

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

      @@aysuh-n3g not my words, from chatGPT, give it a shot, learning the difference

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน

      Sure, I'll learn that. I'd suggest you to check some of the explanations, how == and === works

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

    Is that english ?

  • @ravindrasingh-cw9df
    @ravindrasingh-cw9df 3 หลายเดือนก่อน

    amir bhai linkedin ID do apna

  • @DheerajSingh-n3x
    @DheerajSingh-n3x 3 หลายเดือนก่อน +2

    😢itne. Tagde laval pr. Interview hota hi ni fresher ka pgl

    • @AmirKhan-uh5vd
      @AmirKhan-uh5vd 3 หลายเดือนก่อน

      Hota hai bro 🙃

  • @Om.Dongaonkar
    @Om.Dongaonkar 3 หลายเดือนก่อน

    var op = ' ';
    var a = 'HELLO';
    var b = 'WORLD1234';
    for(var i = 0; i < a.length || i < b.length; i++){
    if (i < a.length){
    op += a[i];
    }
    if(i < b.length){
    op += b[i];
    }
    }
    console.log(op);

  • @ashishkumar-jo7cj
    @ashishkumar-jo7cj 4 หลายเดือนก่อน

    Check my code is this correct
    let str1 = "Hello";
    let str2 = "World 1234"
    let out = "HWeolrllod 1234"
    function mergeString() {
    let res = '';
    let combineLength = str1.length+str2.length;
    for(i=0; i

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

    const str1 = "Hello"
    const str2 = "Pkew"
    console.log(str2.charAt(0))
    const max = Math.max(str1.length,str2.length)
    let res= ""
    for(let i=0;i

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

    /2''pxn rtv II vkx ant < ar br pjz < sfr ba rwch < int=cjx mol/
    /~8x tmp rayz wb ar br pjs < rwch 2''pxn /
    /ba HUD ~8x vw < ar br alien tyl chp < par rwch h6:h2> mol i.e. cnnon/
    /+ pachf-stp + df=vkx ant - at ar br pjs - sfr cjx mol - alien zfr ba - 8x tmp rayz wb/