Frontend Interview Experience (TazorPay) - Javascript and React JS Interview Questions

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

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

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

    Follow me on Instagram or you may fail in your interview 🤓 - instagram.com/roadsidecoder/
    If this video gets good response, I will make more interview videos, so, do share it with others 🔥

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

      ++ Follower;

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

      Please add video about jest unit testing

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

      I would like to know for what position you applied? SDE1 or SDE2

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

      @@aahaan8647 bhai documentation padhna start kr warna tutorial dekhte dekhte zindagi nikal Jani h

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

      @@akshayshinde2403 ye sare questions SD1 ke h bhai.

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

    Really need DSA with JS and it will be great to learn from you.

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

    The video was very helpful. Can you please create a series which have questions about DSA with JS? That would really help many developers. Thanks :)

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

    That's super helpful. Thank you so much for this interview Q&A series, helps soooooo much. If possible could you please make a DSA series using Js. Thanks in advance 🙂

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

    Great one. We want DSA series in javascript 😍

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

    Bhaiya make more video related to frontend interview questions……👍

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

    Nice video Piyush! I think some videos about Generators and Data Structure will be really useful! Keep up the good work!

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

    this.name will not be undefined in the arrow function rather it would be an empty string as window object consists of a name property. If we use it in some other environment like nodejs then it would be undefined. BTW I like your videos they help a lot

  • @RAUSHANKUMAR-vu5hy
    @RAUSHANKUMAR-vu5hy 2 ปีที่แล้ว +2

    Your javascript tut is very helpful for me understand easily the core concept

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

    Thank you so much for this interview Q&A series, helps so much. If possible please make a DSA series using java script

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

    A simplified version of pangram can be this too:
    const string = "when zombies arrive quickly fax judge pat";
    const alphabet = "abcdefghijklmnopqrstuvwxyz";
    const isPangram = (alphabet, str) => {
    let result
    const alphabetArr = [...alphabet];
    for (let i = 0; i < alphabetArr.length; i++) {
    if (str.includes(alphabetArr[i])) {
    result = true;
    } else {
    result = false;
    }
    }
    return result;
    }

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

      We can use Regex for this as well, right?

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

      @@SuperYoman100 You can, yes but personally, I tend to keep my programs as simple as possible. 10 years of experience with JS has taught me this at least

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

      Its not giving correct result

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

      after 10 yr developer will forget dsa and basic logic like you. run with str = "z" you'll get true lol

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

    Bahut hi sahi bhai ! Will help many of us definitely

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

    Instead of waiting 2000 years for create-react-app you can use vite. Only thing about vite is that it provides a minimal setup for development.

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

    new Set(str.replaceAll(' ','').toLowerCase().split('')).size===26
    For Pangram string checker.

  • @ιυ_αα-ξ5σ
    @ιυ_αα-ξ5σ 2 ปีที่แล้ว

    Super great video makes excited to learn more and get started! Love the "stay organized" motto !!

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

    just some advice, I know the focus wasn’t supposed to be on styling, but you adding all those inline styles made the first react question very hard to look at. If you don’t want to worry about styling in the video, just create a pre made css style sheet, and add classes as you go. Would make things a lot easier to watch

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

      Agreed, Thanks for the advice.

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

      @@RoadsideCoder For how much work ex is this expected?

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

      @@piyushchopade7878 1 year, Thie however can be asked in any experience

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

    Loved the video Piyush. And yes, we require a DSA with JS tutorial playlist.

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

    Could you please explain while changing quantity you use the filter instead of map. As I understand, a filter doesn't change the value of elements of the array but filters out elements based on condition.
    Why this is giving correct output?

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

      Maybe you have already solved it but after a lot of research I understood what he did.
      Min 23:11 line 16.
      Cart Is being reassigned the previous version of itself but filtered:
      - the filter : it will first find the product with the provided id.
      - Then the ternary ( if) it will use the filter to asign a new value to Qty which is the new payload ( previously changed to +1 or -1 ) if the qty is 0 the filter will consider it as false, so the element will not be added to the filtered array.
      -after the : it will return the updated quantity
      Please correct my if I'm wrong, but this is the conclusion that I found after hours of being stuck with this masterful piece of code.

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

      Its because filter will only return those filtered put elements but map will return filtered out elements along with empty slots for other elements

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

    We are waiting bhaiya 🔥🔥🔥

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

    Great video! Just one quick question.. was this for SDE 1 or SDE 2 position? Thanks in advance

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

    My man's dedication is over the top!

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

    After watching LRU cache question can you create a video on generators in javascript that'll be helpfull 😀

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

    yes, please make playlist for these type of DS and Algo

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

    Amazing video, really liked it!!
    Just a question, were those rounds in a call or they gave you those tasks and you had to return them the answer to it?

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

      All in a video call with screen sharing

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

    Need more videos like this thanks for sharing keep it up brother

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

    Please Please do DSA with Js series. I rejected lot of interviews with this DSA only.

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

    This video is great! You must create DSA with JS full playlist.

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

    Recently,I gave Zepto's UI Interview.
    For Cart login I used Arrays to store every object's data. Basically, I used Array of Objects.
    I created full flexed working app.
    A day later, I WAS REJECTED.
    Feedback was - I should have used Objects for cart instead of Array :(
    People say anything to reject. Please help if there could be a better way to store cart items.

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

      *logic

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

      @@darshitraj1694 They wanted to see something like that probably: [{productName: "MacBook", price: 50, quantity: 2}, {...}]

    • @mohammadyasir-ci7gf
      @mohammadyasir-ci7gf ปีที่แล้ว

      Basically interviewer wanted to store the cartItems like this.
      {“randomId”:{itemName:”mobile,price:10,quantity:10}
      where randomId is a cartItem Id, there are many ways to create randomId in js.
      I think interviewer was saying to use Object over array because of time complexity to remove an item from cart.
      If you use array the time complexity would be O(N) but if you use object the time complexity would be O(1).
      But wait, it doesn’t mean that Object will be always efficient, it’s totally depend upon the requirement.
      lets say if we want to know how many items are added in cart, or last 5 items added in cart.
      In these cases the array option will work better that object.
      Anyway I think as an interviewer its better to ask follow-up questions in these situations rather than directly
      rejecting the candidates.
      Remember we can’t make ourself 100% rejection proof, there could be any reason for rejection.
      Hope you must be doing great somewhere now😊

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

      @@mohammadyasir-ci7gf first of all, Eid Mubarak Yasir bhai. You answer is something I was searching for sometime now. Yes, the approach with objects are better with performance centric apps, maybe, which involves frequent addition/removal.
      I stayed in my current company for stable work enviroment.

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

    Yes please make videos on DSA with javascript..

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

    Please create DSA playlist for Js

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

    This is how I solved the Pangram Question:
    function checkPangram(str) {
    const arr = []
    const sentenceArr = str.toUpperCase().split("").filter(item => item != " ")
    sentenceArr.map((alphabet) => {
    if (!arr.includes(alphabet)) {
    return arr.push(alphabet)
    }
    })
    return arr.length === 26 ? "Pangram" : "Not Pangram"
    }

  • @rajesh-royal
    @rajesh-royal 2 ปีที่แล้ว +13

    were you selected, what package, perks they offer - you dont have to mention the CTC, just if it was competative

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

      Bhai CTC bata diya to blacklist kr denge

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

      @@gullukumar4497 kon karegaa ??
      Company ?

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

    Do you know about conic-gradient and percentage variable before interview? I saw for the first time.

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

    Want you create dsa for javascript, containing interview like questions.

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

    suuuper helpful video, thanks man!

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

    Data structures with Js is must needed in TH-cam but it's must a detailed one with all cases of data structures covered

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

    Awesome walkthrough of interview experience😎🔥

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

    Bhai super yaar....mazza aa gya !!

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

    Definitely want to have a talk with you. I will book a call with on topmate in next 2 weeks for sure.

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

    Ur putting this video in this series after long time

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

    Amazing video very helpful, Please create DSA series in javascript 🔥🔥

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

    bro your videos really help me in my interviews too.. thnakyou..

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

    Hi bro, love your content and the vibe of the video so wanna ask you a question that is is there a internship which is only for frontend developer and how can i apply for it. Looking for you reply

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

    We need DS with js pls do a series on that

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

    Tazorpay ? It's so difficult to figure out which company it was. Unable to think of any other fintech with similar name. So subtle.

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

      Lol, ikr I'm so smart 😎🤓

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

    We all need full DSA course with javascript.

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

    Hi Thanks for creating such good coding video. Please create DS/Algorithm in JavaScript

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

      If you're looking for visual examples for DS with JS, you can check the following, until he uploads one :)
      Playlist: th-cam.com/play/PL2sQdFoGnLIgTJ4hP3ab4HoPOe4BT4ose.html
      Demo : ahsanayaz.github.io/fun-with-javascript/
      Sorry for replying to multiple comments :) I feel like the playlist can benefit a lot of folks here.

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

    why its getting removed autometically from cart
    ?

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

    Yes DSA series .. i m having so much problem in DSA part .

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

    I hate how you can make things so easy, yet when I'm APPLYING it myself, I blank out. I wish I could be good as you. Any tips? I've been studying for a year now and I feel like I've not done enough yet to learn the basic, I just don't feel confident at all.

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

    you can do what you want!

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

    We need a series of DSA
    Please do it sir !!!

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

    Plz Do make a playlist on Data structures n alorithyms with JavaScript

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

    23:23 if we go below 1 how the hack that item removes automatic from cart instead of changing carty quantity to 0. Please explain krdo boht confuse horha hai

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

      cart filter would return action.payload.qty, and that would be used as a filtering condition, if it matches the product id and qty is returned, the 0 qty would be treated as false thus filtering that from the array.

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

    Bro, I have gone through some videos, you are simply rocking and just you inspired me a lot.
    what should I do to pro in javascript like you ? is there any best book for javascript and as well as practice problems?
    please refer to any suggestions and root map.
    by the by, I'm from Non-IT background.

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

      Hi Santosh, Thanks a lot for appreciation ❤️ Let's connect on instagram @RoadsideCoder. You can ask me your questions there.

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

      @@RoadsideCoder Sorry, I don't have Instagram.

  • @user-zp1dv4yh5e
    @user-zp1dv4yh5e 2 ปีที่แล้ว

    Yess , we need DSAwith JS

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

    Thank you so much 😊

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

    You are the man

  • @0Ipsita0
    @0Ipsita0 ปีที่แล้ว

    Yes, create separate DSA video playlist.

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

    It will be great if you are creating a one series of DS with JS.

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

    Waise Kitna Time lagega React Js sikhne mein.....ki interviewer koi problem de or hum solve kar le ?
    Aapne kaha se sikha tha javascript and react js ?
    Plzz reply

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

      Fresher ko etna nhi puchte hey Bhai core aur advanced concept pey questions puche jaate hey, concepts clear hona chahiye, face to face interview mey questions puche jaate hey bass

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

    Sir you have made my life ❤🌟

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

    Sir please create tutorial on Ecommerce website creation by using MERN technology

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

    WNice tutorialch version do you use to get all the setup and polyphonic softs?

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

    please create DSA with js series

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

    it is very usefull video can you please create DSA with JS

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

    Yes we want dsa with js

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

    Also how do you copy paste so fast? whats the shorcut control? please tell

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

    Yes please do it DSA+JS

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

    Why I found this interview so hard !! 🥲🥲🥲

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

    Nice explanation sir ji 🙂🙂

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

    Bro make videos on Mostly asked DSA interview questions..

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

    waiting for series DSA + JS questions and what can be the level of questions interviewer can ask

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

    Was this interview for fresher or experience bcz level of question i think is not for freshers ?

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

    Bhai mai mechanical se huun.
    Aur abhi start kiya huun web development
    What you think
    Please give any tips

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

    please create a DSA videos. That would be really helpful

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

      You can probably get started with this. Until he uploads a series.
      Playlist: th-cam.com/play/PL2sQdFoGnLIgTJ4hP3ab4HoPOe4BT4ose.html
      Demo : ahsanayaz.github.io/fun-with-javascript/

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

    yes please make dsa seriese

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

    Bro. Make vedios on javascript data structure please

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

    I have one confusion in DSA question can we allow using other language like c++ and java because this is the most common languages for dsa and i also solved the lru cache question but in js and c++ approach is very different special implementation ???

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

      In frontend most interviewers won't allow any other language than JS

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

    great video

  • @RAUSHANKUMAR-vu5hy
    @RAUSHANKUMAR-vu5hy 2 ปีที่แล้ว +1

    Please make more video fronted developer related

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

      For sure. If this one does good I'll make more!

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

    case "ADD_TO_CART":
    return { ...state, cart: [{ ...action.payload, qty: 1 }, ...state.cart] }; What does it mean??

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

      cart filter would return action.payload.qty, and that would be used as a filtering condition, if it matches the product id and qty is returned, the 0 qty would be treated as false thus filtering that from the array.

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

    In Round 2, The array was declared as constant. Yet in the for loop, we are modifying the elements of the array Isn't it a violation?

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

      const keyword needed to be assigned something when they are declared and we can modify them whenever we want. Dont go with the name const it doesnt mean we need to keep it const.

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

      No we cannot modify any const variables, but in case of arrays or Objects we are storing the reference of that data structure. We cannot change const variables if its a number, string etc it will throw an error.

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

    please make a DSA series using Js

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

    hey, so i been learning react for quit a while, i can make e-commerce, twitter like websites in react and know JS well so can i start to give interviews?? for frontend roles??

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

    Bro, im preparing fronrend interview need ur guidness ❤

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

      Hey, you can book a call with me here - topmate.io/roadsidecoder

  • @coder-webdev5907
    @coder-webdev5907 2 ปีที่แล้ว

    Somebody help me in this problem
    Please write solution in javascript
    Write a function called do_allocation(number_of_people, number_of_buses)
    The function should return a list of number of people who can get into the next bus that comes in based on the following logic:
    Each bus’s capacity is the sum of the capacities of the previous two buses.
    Once all the people get in, then the buses can continue, but will have 0 people inside it.
    This is the case when the number of people are less and there are more buses. So after all the people are already boarded, then the remaining buses will have 0 people boarding.
    The output of the function is an array/list with the same length as number_of_buses.
    The total of this output array/list should be less than or equal to the number_of_people.
    The first bus’ capacity can be set to 1 by default.
    E.g.
    Def do_allocation(number_of_people, number_of_buses):
    …. Your code….
    Return array[number of people got into first bus, number of people got into second bus, …. , number of people who got into last bus]

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

    How Much Level Of Experience to get these all Questions ?? . Really, Huge Subject and It's cover all the Important Concepts in JavaScript and React.js

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

      It was for a junior role

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

      @@RoadsideCoder Thankyou

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

    please create a DSA in JS series

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

    Bro create a separate DSA series in Js ❤

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

    hii.. bro, i want to create inshort like news app from you.. please tell me how much money you want ? bro my budget is too low..

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

    DSA with JavaScript 🙌

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

    Why the product was removed when ghe quantity becomes zero, I'm not able to figure it out
    You didn't used any check to remove the item from cart if product qty is less than 1

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

      He did, items in cart only render if cart.length is greater than zero

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

      i have the same question...why is the product getting removed from cart when qty is zero, it should simply update the qty from 1 to zero right?

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

      @@saswatidas8750 yes exactly that's what I thought, when quantity is 0 it should show 0 in the cart component, but instead it is removed from the Array

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

      @@yodahunter1412 cart filter would return action.payload.qty, and that would be used as a filtering condition, if it matches the product id and qty is returned, the 0 qty would be treated as false thus filtering that from the array.

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

    43:16 Is Map an ordered or unordered data structure in Js?

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

    please can u suggest a good resume builder

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

    Tazorpay? Or razorpay

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

    so were you hired after smashing the interview or not ?

  • @ANONYMOUS-wx5kc
    @ANONYMOUS-wx5kc 2 ปีที่แล้ว

    Pls make a video on dsa with js

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

    Sir, DSA round nahi hua? I saw that you applied for Software Engineer role.

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

    Yes we need data with java