React Junior Developer Interview (Questions & Challenge)

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ย. 2024
  • 🚀 Project React → cosden.solutio...
    📥 Import React (Newsletter) → cosden.solutio...
    Join The Discord! → discord.cosden...
    VSCode Theme | Font → Material Theme Darker | Menlo, Monaco "monospace"
    Big shoutout to Bogdan for helping with this video!
    This is a React interview for a junior developer position. The interview will start with about 30 minutes of questions about React, and then a 30 minute coding exercise to build a simple React application. The goal with this is to give you an example of what it would be like to interview for a Junior React developer position, so that you can be prepared for it and get the job!

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

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

    Hope you enjoyed the video! I also have a really cool and unique course that will teach you way more than this video. You'll learn how to build an actual complex project with React. It's called "Project React" and you can find it at cosden.solutions/project-react. Also, I have a free weekly newsletter called "Import React" with tutorials, news, and cool stuff about React! You can sign up at cosden.solutions/newsletter?s=ytc

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

      I m looking for react developer job, I have more depth knowledge than him

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

    My man, thanks to this interview I was prepared, a lot less stressed and I actually landed an internship! Thank you both for great work.

  • @keifer7813
    @keifer7813 11 หลายเดือนก่อน +37

    This was great. I'd love to see more mock interviews like this. Both the behaviour section and the practical section. Keep up the vids and shoutout to Bogdan. He's a braver man than I

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

      for real

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

    I love how you teach and your approach. I wish Frontend Interviews were like this really

  • @yasserassi3276
    @yasserassi3276 10 หลายเดือนก่อน +6

    This was fantastic, and I would appreciate additional simulated interviews similar to this one, encompassing both the therotical and practical parts.

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

    Thank you both and especially Bogdan for being brave to do this!

  • @tomasburian6550
    @tomasburian6550 11 หลายเดือนก่อน +8

    What a great video. I was actually amazed by how much I know about React since I could offer an answer to each of the questions after 3 years in the business, but this helped me to refresh and learn some new facts. Definitely useful.

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

    I've seen many videos on react since I started learning it. Never seen one like this and really enjoyed it. I tried to answer the questions before he did and I even surprised myself on how many I got right. Hope to see more content like this!

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

    this was fantastic! please do more interviews as videos and pair programming exercises. I paused the vid and did the fetch countries exercise myself before watching the second half of the video just for practise!

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

    Excellent video, the interviewer explaining and giving insight of the issues and ways to work around them is perfect, great job both!

  • @keshavakumar9828
    @keshavakumar9828 ปีที่แล้ว +4

    i have been learning so much from your react videos. i have fairly 2 YOE & i always find myself refreshing and learning new things from your videos

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

    This was great. I'd love to see more mock interviews like this. Shout out to that kid for his attempt 👏 .

  • @DeJourFord
    @DeJourFord 11 หลายเดือนก่อน +7

    as someone trying to land my first Jr Role, this video is helpful. I appreciate both of you!

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

      Did you got any job brother?

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

      @@unwrittenshots yeah I did but not as. React Developer. We just use vanilla HTML, CSS, and JS

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

      Congratulations ❤️ genuinely felet happy reading your commnet brother. As I am willing to land a junior developer job, can you give any suggestion?

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

      @@unwrittenshots my biggest suggestion would be to build an application that you’re passionate about. Don’t just build something because everyone else built it. The best projects are those that you worked on from inception.

  • @hakusaan
    @hakusaan 10 หลายเดือนก่อน +13

    The approach with 2 useEffects is better IMO because each would be responsible for 1 thing (1 fetch all, 2 fetch capitol) then it would be easier to code split. Also you don't need second fetch because you fetched all in 1st call, just filter it with JS. Additionally I think that fetch in useEffect that listens on a variable change is a bad practice, you should always fetch on js event when possible, if it's not possible then on useEffect trigger.

    • @scvkurt03
      @scvkurt03 8 วันที่ผ่านมา +1

      Would it not be better to just filter the list of capitals in state rather than make another API call? Handle locally what you can handle locally, no?

    • @hichamKM
      @hichamKM 6 วันที่ผ่านมา

      from my perspective, it seems that he's using the second call of filtering in the useEffect only because he has the filter api endpoint. If he didn’t have it, he should definitely use a js event to update the country

  • @조연정-f1y
    @조연정-f1y ปีที่แล้ว +12

    I enjoyed this video! You seem really kind. It'd be nice to be able to work with a senior developer like you.
    As a junior developer, I will watch your videos often. Hope to see more content like this in the future.

  • @IoanAlexandruAndrei
    @IoanAlexandruAndrei 11 หลายเดือนก่อน +14

    I have a little thing to add on top of this awesome coding interview at 37:20, defining a function, let be it arrow func or a simple function, it becomes part of the component's main body. If it's added into the dependency array, everytime the component rerenders, the function will change ( functions are basically objects in JS and on every render are destroyed and recreated ) because it will become a new instance so it will trigger the logic in the useEffect. This won't create an infinite loop, but it will certainly run more than once. Anyways, great interview!

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

      You right

    • @webb-developer
      @webb-developer 9 หลายเดือนก่อน

      good notice.

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

      the function reference changes, thats why if you need to call a function in useEffect and also depend it in the dependency array, you either have to define the function outside the component (doesn't change reference on re-render), OR wrap it in a useCallback. It should be more performace efficient in the first case (def func outside), rather than using useCallback on top, but thats diving into too much detail :)

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

    More of these please. This was awesome. Good job bogdan!

  • @SakshamDubey-vv2ms
    @SakshamDubey-vv2ms 9 หลายเดือนก่อน +1

    Thanks for giving me more confidence that if Bogdan has 4 YEO and was struggling with this level, I am surely gonna get selected

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

    I am thankful for this because I'm learning by myself and I have no idea what level I am right now, if I'm a complete noob or if I am ready for job interviews. Under stress and for a video I have no idea how I would do, but the challenge was pretty easy and I was telling the guy answers 😂 so maybe I am actually ready. I was intimidated by the challenge at first because right now I'm not using react, I'm learning something else, but the tutorials did something right because when I went step by step it just was working. I'm an very happy right now because I needed a little boost to be more brave with my skills. thank you both!

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

    After watching this video, I gained more confidence. Even though I am a fresher without a job, I still know these concepts better than a developer with 2+ years of experience. Should I be sad or happy 😭

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

    Kudos to him for making himself vulnerable. Good job!

  • @personalquests
    @personalquests ปีที่แล้ว +6

    This is fantastic! I thoroughly enjoy this type of content. Keep up the good work, @Cosden Solutions!

  • @justinrivera6749
    @justinrivera6749 10 หลายเดือนก่อน +7

    As someone self learning and hoping to switch careers. This was a tough watch. Makes me feel like I should be applying right now but I can’t imagine this is “junior” level.

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

      do you think the junior level role would be easier questions?

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

      @@endera782 I could see the confusion, I was more referring to the person being interviewed. I feel like the questions were on par with what I would imagine

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

      @@justinrivera6749 Yeah the person being mock interviewed has 4 years of experience. Really wish they would do these kinds of videos with people are either aspiring juniors or recently hired juniors.

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

      I am in the same spot , self learning and hoping to switch careers.
      Did you make it ? and if yes then how? 😅

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

    I've been doing react professionally for 2 years and exposure to it for 4 years, but actually learned some new stuff today that i thought was just convention but didn't know why we actually do it

  • @ngayathri1818
    @ngayathri1818 11 หลายเดือนก่อน +7

    Appreciate the effort by your friend. It's really awesome. It is not easy to code if someone is watching us. He did a great job.
    Thank you for organising and preparing all the questions for us...

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

    I would say this is an actual junior developer interview, because the candidate is actually a junior and knows everything the same as a junior developer, unlike other mock interviews where the candidate for a junior role is actually a lead software engineer, great work brother.

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

      The canditate has at least 4 years of experience and knows fullstack, not JR.

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

    As an interviewer, it is better to listen more. Don’t be nervous, you are doing great :) and it is still interesting to watch

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

    Learn JavaScript well before learning TypeScript and ReactJS.
    I love this. I hope you can do that with a senior.

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

    Great educational video. Shout out to Bogdan. Thanks a lot!

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

    You are the one the best youtuber i have seen so far
    So, be motivated and Keep Making your great quality content ✨
    Thanks alot

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

      Thank you for the kind words!

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

    I would've loved to participate in an interview like that since there's a great shortage of real react interviews for junior devs. Thanks for the video, really educational

  • @fcku09
    @fcku09 20 วันที่ผ่านมา

    wish my interview looked like this
    i had my first tech interview a few days ago, and i def haven't passed it
    it was junior react position, but seems like the guy wanted me to know completely everything in deep about js methods..

  • @re.liable
    @re.liable 6 หลายเดือนก่อน

    Thank you for the content.
    I had some issues with the challenge. Mainly from understanding the given problem (which sounds so bad I know...)
    I got confused with the functionality of filtering the countries by capital. I couldn't shake off the thought "Why would we need to filter by capital? Don't countries only have a single capital? Are there countries that have more than 1 capitals?" stuff like that. If I was in the interview I would've clarified this with the interviewer.
    Not having a view of the UI also gave me troubles just like the guest haha
    I think I got the storing of the current filter "key" correct. However I would've fetched the country list only once. And then I would've derived a `countriesToDisplay` list which filters the "master" list using the currently selected capital. This might be wrong on some parts though... since with this approach I wouldn't "need" the `/capital/{capital}` endpoint at all. I could just go through the master country list and see which countries match the current capital
    Also I would've definitely tried visiting the API links manually at the start just to see what sort of response they give

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

    Wow the useEffect solución at the end was great, very interesting aproach. I learnt a lot from this video thank you

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

    Please make this kind of videos which are really helpful for freshers ❤

  • @AsmaaRefaat-h8c
    @AsmaaRefaat-h8c 8 หลายเดือนก่อน

    Awesome!! I am a react junior as well and that resembles me soo much and my senior when she reviews my PR and suggests really concise, more efficient way of doing stuff 😄❤ and i am always like "WOW that's was way cooler!!"😂

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

    lovely content, am a junior and I learnt alot, thanks 👍

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

    great content bro i hope you keep this type of stuff up it is very helpful for devs like me trying to get a react dev job so i kan know what things i need to improve on!

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

    thank you so much for these react videos

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

    Enjoyed watching this !

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

    This is great content, I came here from your instagram page and would love to see another interview with advanced questions and senior developers.

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

    Please do record more videos of these type..please it’s a humble request 🙏❤

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

    This video was extremely useful to me. Thanks alot.

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

    This is very helpful, thank you very much.

  • @ariyoujahan9662
    @ariyoujahan9662 ปีที่แล้ว +17

    First of all thank you Bokdan (sorry if i didn't spell it correctly) for your courage and your time.
    There are lots of people with big talk but never dare to stand there and being interviewed (with so much viewers and being recorded specially).
    And thanks you codsen for this content. It was amazing. I hope for more content of this type.
    Mybe you could try other level interviews such as senior with more complicated challenges.
    (Please like if you are agree with me)

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

    As a developer who has working experience of 1.5 years with react, I was not expecting such answers from him🤨🤨

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

      no hate to the guy but hows he not used useRef with over 2 years of react or not knowing what a controlled input is?

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

    No pressure - JUST do your BEST.
    I love it, lmao

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

    Please make more such videos love this one.

  • @vivekkumar-pc1xy
    @vivekkumar-pc1xy ปีที่แล้ว

    great Interview, this interview really helps to prepare for the really one.

  • @lalaalal7847
    @lalaalal7847 ปีที่แล้ว +7

    This is a prime example of why you shouldn’t start off using so many libraries- you will miss the fundamentals

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

      Fundamentals are super important I agree! But I also think he did well

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

      @@cosdensolutionsyou’re being kind. Imo he struggled way too hard with the API call, something you’d expect from an intern

    • @catalincatalin4101
      @catalincatalin4101 ปีที่แล้ว +7

      @@lalaalal7847 except he might not be fetching data every day at his current job and he really kept this real without preparing a "script" of what Darius will ask him. Yes, an intern would have this knowledge fresh probably and would answer it faster. I wouldn't personally be so judgy with someone having a live coding session interview, but hey, I respect your opinion. I am sure he was expecting that some ppl will judge his knowledge when he had the balls to accept this interview 😂

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

      nah dude, you haven't seen what interns really can do. This was great, and he was also unprepared we did this spontaneously

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

      that's exactly it actually

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

    Great Mock Interview , Thanks

  • @VitorDias-n8r
    @VitorDias-n8r 10 หลายเดือนก่อน +2

    Great content! As a mid level junior, around 1-2 years coding, I could see I really know a lot. Coding takes time, study and code obviously.
    90% of questions I was abble to aswer, and sounds very weird he doesn`t use more basically react tools

  • @KING-ej5qj
    @KING-ej5qj 9 หลายเดือนก่อน

    Need more interviews like thus

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

    Came across your vedios, learnt alot my frien thanks❤❤❤

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

    He said he haven't used anything, so is he really a React Developer or just HTML developer?

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

    I loved the video, more like this please!

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

    Very useful, thanks! Unfortunately, Bogdan doesn't really looks like a 2y experienced dev, he's kinda avoiding every question. But thanks for the video!

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

    Being a senior react dev, the only question i had a problem with was the jsx one lol.. like how do i explain what it is.. so funny :)

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

    Great interview . Again amazing content bro ❤❤❤❤

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

    eventhough it is fake, i learned much more

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

    Amazing interview ........great questions .

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

    This was terrific. Loved your knowledge drops during the interview. Is there any way we can get a copy of the code?

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

    If only the real interview is this easy I would have been a junior react dev by now lmao

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

    Great, I love it.

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

    I have a thought. In condition that we get the all 250 countries, we could just find counrtries by capital like countries.find((country) => country.capital ===value) without fetching. but if we have 20 countries from 250 this approach wouldnn't work. of course.

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

    I wish to have a intervew like this :)

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

    I am confused. At 37.00
    writing that fetch function outside of use effect like so..
    let fetch = a sync () => {
    // inside code whatever
    };
    use Effect(() => {
    fetch();
    }, [ ]);
    Works good. So why did he say all that !!

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

      It works but you get lint errors because fetchData has to go inside the dependency array. And if you do that, it will run the effect infinitely. By defining it inside the use effect you don't provide it to the dependency array and you don't have this issue

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

      @@cosdensolutions in above code I haven’t provided it inside dependency array. Works. No console warnings too. I am new to react.

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

    I'd love to be interviewed :D Great video, and a very good applicant :)

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

      Let's take you interview

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

    I have one performance question about the last part. And would really appreciate if you would answer me this:
    You are fetching the all countries list no matter what when the component is mounted.
    It means that countries in the Component always will be array of 250 objects (as the capital on first render is not set).
    If we already have the array of all these objects in our component state then why should we repeat the fetch for single capital/country on the onChange on Select component?
    It seems like unnecessary queries to our server/database - which i don`t think is the best performance and with big scale (like thousands of users that could easily be some issue).
    Wouldn`t be better just to filter the array that we already have in our component state (countries)
    Or maybe even better, maybe we don`t want to filter whole 250 elements everytime user interacts.
    So then we prefilter our 250 elements array with the FILTERABLE_CAPITALS and return the new array filterableCountries - with only 6 elements.
    This would be only 2 operations on mount component - fetching the array once, and filtering it once.
    And then onChange on our Select we would filter our small compact filterableCountries - 6 element array instead of fetching data from server for every user input.
    Now we have only 2 functions that could potentialy slower the application - once the fetching - which can take X time depending on the server response.
    And secondly prefiltering our fetched data witch should be quite fast unless we receive like dozens of thousands elements (but then we shouldn`t fetch it all in the first place ;)
    For me it seems like a more reliable solution, less depending on server, creating less network transfer and all in all would be faster therefore better for the User Experience.
    If i am wrong please correct me.

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

      Oh bro you are a genius, what are you doing here on TH-cam? You are supposed to be at a senior position in a tech giant corporation, kinda feels weird to me that you would have enough time to watch someone else's interview and then try to find mistakes in their attempts rather than caring about your own one. The efficiency of application ofcourse does matter but this is an interview where the interviewer is testing his logical thinking, of course performance optimization is mandatory, but not in a small react interview, everyone is not as gifted as you to show brilliant presence of mind while at an interview.maybe he was too nervous to think that way.

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

      Hey it's a good question, nice insight. In this example, with 250 fetched elements, yes you could easily just fetch the list of countries once, and then filter countries from your original fetch. This would be faster in this scenario, but probably the interview wanted to demonstrate you can perform dynamic network requests on filter value change.
      However like you noted, this approach doesn't scale. Lets say you're working with a different set of data, like fetching invoices of which there could be tens of thousands. In this scenario, you'd most likely never fetch "all" invoices, you would just fetch a paginated set of them. Then for filters, you still need to issue a network request to get a filtered set, since you'd never have the full set to work with.

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

    Love these! If you're looking for more interviewers I have 3 years experience working at a fortune 500 insurance company. Would love to do something similar sometime :)

  • @Bhushankadam011
    @Bhushankadam011 8 หลายเดือนก่อน +7

    3:44 We don't put JS in html. We put html in JS functions.

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

    great video, but less code doesnt mean better code. Its important to have your code made for easy readability

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

    amazing!!!

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

    Which camera you guys use to record your video?

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

    Great interview! I am also Junior React Developer, and this means a lot. Bogdan looks like a guy from my contry Serbia, do you have his TH-cam Channel or Linkedin to watch more?

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

      He doesn't have youtube hahaha he's just a friend I worked with at a company! And he's Ukrainian! But believe it or not, I'm currently living in Belgrade (but I'm not Serbian)

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

      Oh what a coincidence 😂
      Hope you like it here! @@cosdensolutions

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

      ​@@cosdensolutionscan you share his github?

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

      ​​@@cosdensolutionswow great haha. Didn't expect that. Hope you like it

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

    enjoy it

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

    Thank you for the video. Completely unrelated, but what chair are you using and do you recommend it?

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

      it's from ikea, I really like it but I'm not sure of the model haha but it's pretty common

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

    Without useRef, there's also a way with using an id and making dom manipulation with it to focus....

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

    He did great....

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

    I started learning react a month ago and i knew way more than thia guy.

  • @МаминыСказки-п9ш
    @МаминыСказки-п9ш ปีที่แล้ว +2

    ❤❤❤

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

    it was great , thx

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

    I also want to do a react interview mockup with you. How could it be so??

  • @AmitKumar-cp6mx
    @AmitKumar-cp6mx 11 หลายเดือนก่อน +1

    Like seriously these kind of questions are enough for junio react developer interview?

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

      Yeah what else would you want? 😅

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

    i would have passed this hurrah
    🤩

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

    this is good interview and love it learn from it

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

    Wth? No negativity here. But the guy giving mock interview is a freshie not an experienced dev of 2 years

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

    More of this... Thanks

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

    Hey can you add some links of them to whom you interview, like bogdan.
    Also do you use vim edition extension if yes then name a video of it please, I want to use this on my setup too

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

    Hi, you are doing great. can i get a chance to to give you a mock interview on react?

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

    I enjoyed it. Can you do more?

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

    Outside of the person being interviewed. Is this the type of coding challenge that would be asked in a technical interview? I’ve never done one and have always wondered

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

      yeah, I've had challenges like these quite a bit. This was in Europe though so might be different elsewhere

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

    This bro, who's applying the interview..judging on his answers - I doubt that he can be even a junior react dev...not talking about the middle level...

  • @LuisMorales-lu2cm
    @LuisMorales-lu2cm 10 หลายเดือนก่อน +1

    I have 0 years of professional experience and I could give solid answers and solve the coding challenge of this video, does that mean I’m job ready lol?

    • @Abubakr-md6kz
      @Abubakr-md6kz 9 หลายเดือนก่อน

      Yes of course you can, if you can build great things with it then why not

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

    I love how at the end the interviewer became Super Saiyan lol

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

    where can I apply to do an interview with you?

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

    Damn. I’ve been writing react for 4 years (strictly as a hobby) with 0 interaction with any other react devs. All these questions seemed so easy, yet here I am believing I’m the worst react dev ever 😅

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

    My worst nightmare for interview dsa with react js...this one somewhat scary interview for me.

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

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

    they did a good job, but sure I guess its your friend