React Coding Interview Ft. Clément Mihailescu

Поделиться
HTML-код
  • Опубликовано: 8 июн 2022
  • LinkedIn: / connerardman
    TikTok: / connerardman
    Video/Coding Gear: www.amazon.com/shop/connerardman
  • НаукаНаука

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

  • @ConnerArdman
    @ConnerArdman  Год назад +40

    Thanks for watching! Make sure to also check out the JavaScript interview we did on Clement's channel here: ruclips.net/video/Rs7ARD5TCFU/видео.html

  • @clem
    @clem Год назад +384

    Conner has an easier time building Wordle than playing the game. 😅

  • @nikkoabucejo3886
    @nikkoabucejo3886 Год назад +85

    You explained everything better than most of the tutorials on youtube. 😂 Great interview ! You own my sub.

  • @universecode1101
    @universecode1101 Год назад +26

    As a developer of Js - React, for me the topic is perfect on both channels, in fact now I'm watching the other on Clement's channel, so thanks for these two guys, great

  • @iclip1065
    @iclip1065 Год назад +11

    I was dying inside since I haven't learnt react yet but I love the way you make up the logic so quickly

  • @dylancocoletzi7168
    @dylancocoletzi7168 Год назад +17

    I ain’t going to lie Conner. You making this game makes me so happy 😂. You are too good at react. Teach me your ways!!

  • @thanhquachable
    @thanhquachable Год назад

    Thanks Conner and Clement for another great interview video. I don't only learn the logic and how you approach the problem, but also the coding style. Please make more videos like this.

  • @kacperj780
    @kacperj780 Год назад +1

    you are so chill and i learned so much from this video. you deserve bigger audience

    • @ConnerArdman
      @ConnerArdman  Год назад

      Thanks, glad you learned something from the video!

  • @josepservat211
    @josepservat211 Год назад

    Awesome guys ! thanks a lot for this high quality coding experiences!

  • @magic4694
    @magic4694 Год назад +1

    ur so chill dude i really want to be like u while solving coding problems

    • @ConnerArdman
      @ConnerArdman  Год назад

      Haha in fairness I'm not sure I would come across quite as chill if I was talking to a stranger with a job on the line 😂

    • @magic4694
      @magic4694 Год назад

      @@ConnerArdman still the way u pro coders think while solving any random problems given to u on the spot is just mind blowing for me.

  • @vnm_8945
    @vnm_8945 Год назад

    I love these, I love how Conner explains it, very nice! Subscribed to Conner as well.

  • @louisyou
    @louisyou Год назад +6

    You're an absolute beast Conner! Super inspirational🙂

  • @iamsachin619
    @iamsachin619 Год назад +1

    That was amazing! Great performance Conner.

  • @AmrNabiil
    @AmrNabiil Год назад

    Amazing interview .. awesome thinking and problem solving!
    Skill is shown by both the interviewer and the interviewee .. thank u guys; i know u do this for a living but keep it up 👏✨❤️

  • @utshomomen
    @utshomomen Год назад +1

    This is really hard-core live interview. If someone asked to make this live. I wouldn't have make it or write any of the codes.

  • @TheItchybutthole
    @TheItchybutthole Год назад +1

    When he did the random word algo from memory I was like alright this dude came to play man

  • @thevolcanick
    @thevolcanick Год назад +1

    Ohh man.. I feel like I know nothing after this. I have to practice hard. Great interview. I appreciate!

  • @pb8655
    @pb8655 Год назад +9

    I actually understood what was going on for the first 10 minutes. Very proud of myself 😂

  • @Optionfinity
    @Optionfinity Год назад

    Great work, Connor! Very informative.

    • @ConnerArdman
      @ConnerArdman  Год назад

      Thanks! Glad you found it informative! 😊

  • @cggs3001
    @cggs3001 Год назад

    I actually finished your video, impressive collab man, new sub!

  • @eurob12
    @eurob12 5 месяцев назад

    Great video. Connor talking out loud while coding makes me understand this better.

  • @calarcher4869
    @calarcher4869 Год назад

    Damn you crushed it, with only 40 minutes thats crazy.

  • @jenso413
    @jenso413 Год назад +2

    yoo, awesome video! your solution was fantastic, I could never make wordle that fast under pressure lol. and clement is always on it, he's so good at keeping up with the people he interviews. thanks for the motivation to get better at react!

    • @ConnerArdman
      @ConnerArdman  Год назад +2

      Thanks! Clement really is good at following logic & finding errors in code he didn't write, definitely an under-appreciated interviewing skill haha

  • @jcollins519
    @jcollins519 Год назад +10

    Speaking of the addEventListener optimization at the end, you don't need React to be React-y with the values you're passing. The event listener itself is inherently (lowercase) react-y, and it's updating the state, which is (uppercase) React-y. I feel like optimizing that function would have been a great interview test, whether necessary in this particular situation or not, because it represents a whole slew of common patterns associated with event listeners and effect clean up, which frequently need optimization.

    • @ConnerArdman
      @ConnerArdman  Год назад +3

      Yeah I spent some time after filming this trying to optimize it more out of curiosity (and it might be coming as a FrontendExpert problem 🤫😉) and it turned out to be a really interesting problem. I'm not sure there is actually a single "correct" solution since anything more performant than what I did in this interview would almost definitely be less readable, but it's an interesting discussion nevertheless.

    • @jcollins519
      @jcollins519 Год назад +1

      @@ConnerArdman yeah it's a little difficult to say what the "correct" solution would be. Certainly using callbacks in your setState would do some good but it's really just putting a bandage on the issue, and only works in cases where you're not reading the state in the handleEvent function body. The proposed useEvent hook would also provide the same solution. Ultimately if you want to fix the redundant adding and removing of the event listener you'll have to rely on refs. I don't know if I'd say that it's less readable to do so either. With the recent React.StrictMode update people are needing to rely on certain ref/effect patterns to ensure their "run once" effects only run once(which only applies to development anyway). I think that unless React is planning to offer a built in solution, devs will start becoming more familiar with "initialized" refs, and even more complex methodologies like callback refs to handle problems like this(I would take on this particular problem with a combination of both probably 😉).

    • @dealloc
      @dealloc Год назад

      @@jcollins519 Indeed. A clean solution would be to use a ref with the callback using the "latest ref" pattern for the listener callback, and pass that into the event listeners; that way the listener always gets the latest state while the event listeners are only attached/detached once (in production). This is also how useEvent works somewhat.
      As an aside; StrictMode is only enabled in development mode. It is removed in production builds, so it's not going to double render. So it is not necessary to use refs to avoid double rendering; only if it becomes an issue during development; i.e. you're external network calls or doing heavy computation. But this is exactly why StrictMode is a useful tool to catch those issues, so that you see them and can act upon it. It's not really needed at the top-level of your app, but rather more useful to wrap about certain parts you think are important to optimize.

  • @twerkyfingers
    @twerkyfingers Год назад +5

    I love watching these interviews! ❤️🍺
    And I doubt if any candidate is able to give as fluent explanation as you😂, while writing solution on the go in tense interview environment. But ig you have an edge in explaining stuff because of past experience in making courses/tutorials.

    • @ConnerArdman
      @ConnerArdman  Год назад +3

      Thanks! I think anyone can get with practice, but yeah I’ve had a lot of practice explaining while coding at this point.

  • @beezlebuddy3676
    @beezlebuddy3676 Год назад +3

    These kinds of interviews are way better than just your basic lazy l33tcode interview. These actually show someone can be productive in React on the first day of employment versus just memorized some algorithm.

    • @ConnerArdman
      @ConnerArdman  Год назад +2

      Absolutely. Hopefully they become more common over time 🤞

    • @abd11868
      @abd11868 Год назад

      And many times interviewers ask garph/tree problems in the frontend interview 🤣

  • @sanesanyo
    @sanesanyo Год назад +31

    One can hate Facebook as much as they want but React is probably their greatest gift ever to the developer world :). All hail React, made me fall in love with Web Development :). Also nice interview sessions. So far I have watched two of them and in both sessions I felt I could solve those problems too even though I do web development mainly for fun :)

    • @drizzletone9148
      @drizzletone9148 Год назад +2

      Vue (3 with script setup) is in every single aspect better than React. Well maybe besides job offers.

    • @ryanbeatbox
      @ryanbeatbox Год назад +2

      @@drizzletone9148 Theyre both tools for specific purposes and solve problems for a business. It's not an X > Y scenario. You either use one or you don't.

    • @nilfux
      @nilfux 8 месяцев назад +1

      Svelte - compile time, no virtual dom

    • @henriqueb5637
      @henriqueb5637 7 месяцев назад

      React sucks. There are many libraries/frameworks that are thousands of times better, such as Vue and Svelte.
      Thinking React is the best web development tool is like thinking Mcdonalds makes the best food or Windows is the best operating system.
      Facebook sucks even more than React.

  • @calgary2025
    @calgary2025 Год назад

    Conner, please make a video about how to learn Front end System design for the coding interview 🙏
    I'm FE engineer currently learning FE expert and Algoexpert at the same time, and don't know about system design for the FE.

  • @sergskyc7469
    @sergskyc7469 Год назад +2

    Didn't understood anything in code (def not my level yet, hopefully one day) , but the way you solved this so easily... It just deserves "subscribe" button to be pushed 😀 Impressive!!!

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      Thanks! And you’ll get there soon, it wasn’t that long ago that I was feeling the same way watching this type of video 😀

  • @oguzhancevik4339
    @oguzhancevik4339 Год назад +2

    it was fun to watch, better than best tutorial on youtube

  • @BG-fo4si
    @BG-fo4si Год назад

    My man! Good job!

  • @bradenborman4396
    @bradenborman4396 Год назад

    Great job explaining everything as you go! Very impressive and you know your framework.
    The other guy though.. was not impressed with him

  • @PierreRohan
    @PierreRohan Год назад

    fantastic vid man

  • @JudoboyAlex
    @JudoboyAlex Год назад +2

    Please upload this in Frontend Expert question list as well.

  • @morenojohnchristopherv.8894
    @morenojohnchristopherv.8894 Год назад +3

    Wow how do you guys get at this level where you can easily form the logic off the top of your head lol

    • @shahidahmads
      @shahidahmads Год назад

      it's all staged bro 😂

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

      This exercise is very close to real day to day dev work so with project experience it should be easier. At least it isn't arbitrary leet code questions on a white board.

  • @darelbvcr687
    @darelbvcr687 8 месяцев назад +1

    this guy is a machine

  • @pEeLL00
    @pEeLL00 Год назад +1

    u can use one useEffect just for setting event listener and put letter into useState. and another useEffect with that letter in dependency array for the rest.

    • @vgerov1
      @vgerov1 Год назад

      What if you input the same letter twice?

    • @pEeLL00
      @pEeLL00 Год назад +1

      @@vgerov1 save letter as reference type should solve it. array with one item or object with one property.

    • @vgerov1
      @vgerov1 Год назад

      @@pEeLL00 That will work, thanks.
      The whole solution will cause an extra render, though, which might be a problem in itself.

  • @RyuuThe
    @RyuuThe Год назад +3

    I sat for 47 mins and watched this with only a moderate knowladge of html and css, just to see what it is like to code JS which I want to do. I was not disappointed. Great content, i didn't understand a syntax of it but I can read your body language and how you code. Thanks for the upload really. It helped me understand things.

  • @thehungrycat7281
    @thehungrycat7281 Год назад

    I've been doing interviews for React positions recently and have been doing live coding as well. I am confident I can do the problem given in this video. And have been performing at this level for the interviews. But I run into issues when they start asking questions about hooks like useMemo, useContext which I have ignored until now. So if you are interviewing just make sure you study all the hooks as most senior react devs are expected to know everything. The hooks used in this video are not enough in my experience.

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      Yeah I totally agree that you need to study beyond just what you might use in "normal" everyday React projects. Oftentimes those less-used hooks are a good way to gauge the difference between someone who has used React and someone who has really studied it / knows it fairly deeply.
      And shameless plug, we do have videos on these hooks (useMemo, useContext, useRef, useImperativeHandle, etc.) as well as some hook-specific practice problems on FrontendExpert :)

  • @tarn84
    @tarn84 Год назад

    great video again!

  • @nishantshah_
    @nishantshah_ Год назад

    How can anybody be so so correct, handing the edge cases, without previewing output for the most part, in his first attempt?

  • @IT_Pastor
    @IT_Pastor 4 месяца назад

    Wow!!! Very awesome skills!!

  • @ankushladani496
    @ankushladani496 Год назад +1

    Amazing video brother...
    Keep up like this content...🚀💥

  • @mohitkaushik1658
    @mohitkaushik1658 Год назад

    Made it look easy, subscribed.

  • @gopalmandloi6374
    @gopalmandloi6374 Год назад +1

    Great developer you are !

  • @danielsepulveda4123
    @danielsepulveda4123 Год назад

    Great video! I just kept wondering: wouldn't the array deps issue in the useEffect with the eventListener handler be solved if the state was stored together, as in the same useState or in a useReducer? Since the issue seems to come from the relationship between the different state values and previous state values.

    • @danielsepulveda4123
      @danielsepulveda4123 Год назад

      You could also "revert" the dependency by creating a custom hook that listens to every key press event, stores the pressed key info, and returns it. Then in the main component have a useEffect that runs whenever the custom hook returns a new value.

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      Yeah I think useReducer is the best way to solve this if it is a problem you are concerned about. The custom hook you described could probably work also, although I'm not sure that's much better honestly, just because it creates a lot of extra code.

  • @emilyaung2963
    @emilyaung2963 Год назад

    Conner please make more videos like this.

  • @nishitsarvaiya1474
    @nishitsarvaiya1474 Год назад

    Can somebody please tell me the name of the font they are using in the editor?

  • @simitron1
    @simitron1 Год назад

    For the last problem you could just us useReducer and manage the state with it. the dispatch function is static

    • @ConnerArdman
      @ConnerArdman  Год назад

      Yeah I think this is definitely the cleanest way to solve that useEffect problem, honestly not something I even considered in the moment.

  • @jessica_tee
    @jessica_tee Год назад +4

    I understand everything going on in this video and could definitely code this myself, could I do it while someone is watching......no chance! :D
    These type of coding challenges just don't work for me, I completely freeze, mistype characters, panic and just lock up, the last time I done a test like this I started crying after 15 mins lol take home tests and then a chat afterwards about my solution though I completely smash!
    Great video and solution :)

  • @muhamedzeqiri7360
    @muhamedzeqiri7360 Год назад

    Great Video! Just one question, what level would the task at hand be considered at, like would it be for an entry level react job or maybe higher?

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      Thanks! It really depends (I know, that's not a very satisfying answer lol). In general, I wouldn't think of problems as having a direct mapping to a level, but rather there are different expectations for different levels in how candidates will solve the problem. I'd say this is probably in the slightly harder realm of problems, mostly due to it's length and ambiguity. I don't think I'd expect an entry level developer to completely solve this in less than 45 minutes without hints, but it might still be a good question to ask them to see how they approach it and to give them room to really excel if they can complete it. On the other hand, I'd probably expect a more senior developer with substantial React experience could probably get through the problem, and they might excel further by bringing up additional concerns such as accessibility or how this could have been improved with server-side rendering.

    • @muhamedzeqiri7360
      @muhamedzeqiri7360 Год назад

      @@ConnerArdman Thanks for the answer, I asked because I have been working with react professionally for 6 months now, and I was looking to change my job but I still have no idea what level my current react knowledge is at. So this answer gives me everything I was looking for. Thank you a lot. Keep up the great work!

  • @tinothecoder12
    @tinothecoder12 Год назад

    bro this is wicked

  • @Wolfany
    @Wolfany Год назад

    Hey Connor, great video! Do you think you could share the project/source code with us? I would like to take look at the parts that I didnt understand too well.

    • @ConnerArdman
      @ConnerArdman  Год назад

      Thanks! Unfortunately I don't think I actually have these files saved anymore 😔 I'll make sure to post the code for future videos.
      We do have a similar version of this problem coming to FrontendExpert soon though 😉

  • @piotr.cichosz
    @piotr.cichosz Год назад

    Hey Conner! This is a really good video! I just sent it to my colleagues.
    Now I'm even more interested in optimizing this addEventListener issue. Are you going to try to make a video with one of the solution?
    Thing is many devs do not understand such things. If code works the job is done (no need to improve or optimize the code) - this makes me very sad.

    • @ConnerArdman
      @ConnerArdman  Год назад

      I don't necessarily think it's a very big problem since the browser can add/remove event listeners so quickly, but the solution is essentially just to use useReducer, which would naturally remove the dependencies from the useEffect (because React automatically passes them to the reducer function which would handle the logic outside of the useEffect). I'm not planning on making a video on it, but we did add a similar problem to FrontendExpert with useReducer as one of the solutions 😉

  • @paulnjikamdoum9219
    @paulnjikamdoum9219 Год назад +3

    I am at my fiest year of react i hope i will become skilled like you as time passes

    • @ConnerArdman
      @ConnerArdman  Год назад

      You got it, just keep working at it and you'll be there before you know it 👊

  • @user-hr7rc6yq6g
    @user-hr7rc6yq6g 7 месяцев назад

    The reason why you doing like className +='...' thing is it because the css specificity can render the color you want?

  • @lucasbittencourt8290
    @lucasbittencourt8290 Год назад

    Ha! I'd have won on 5th try! haha
    I'll be doing this myself as an exercise! Thank you for sharing this recording!

    • @ConnerArdman
      @ConnerArdman  Год назад

      Glad you enjoyed it, good luck doing it yourself! 😊

  • @PhucNguyen-sm7vd
    @PhucNguyen-sm7vd Год назад

    Well, when the name Clément Mihailescu showed up on my screen. I thought this was the "normal" interview and I wouldn't see this but some goddamn miracle I still clicked on it and watched it for 45 minutes. Thank god I still get it but because of coding I'm pretty sure I can't do it in 45 minutes.

  • @user-ks1xu9bb7b
    @user-ks1xu9bb7b Год назад

    Two hansome guy play a wet game.
    I just see the experiencer to communication with Java programming.
    This is the first time what I love when think programming languge can make a game and play with each other.🤓🤪

  • @mirjahonulmasov7151
    @mirjahonulmasov7151 Год назад

    Great tutorial. I would try also.

  • @subid.majumdar
    @subid.majumdar Год назад

    really enjoyed it, teach us big brother

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      Thanks, glad you enjoyed it! 🙂
      ** Insert subtle plug for frontend interview prep course linked in description **

  • @BGivo
    @BGivo Год назад

    Wow.. imagine being able to come up with this kind of logic on the fly and put it into working code at the same time.. I don't even

  • @MOHHpp3d
    @MOHHpp3d Год назад

    4:55 LMFAO my exact thoughts when he just started typing that out instantly

  • @ashwinbhargava3011
    @ashwinbhargava3011 Год назад

    To eliminate the problem of adding and removing event listener again and again what if we use redux or something like useContext ? Then i think the guesses data we need can be handed to keystroke handler function inside useEffect without rerenders, so ultimately allowing us to remove the dependency.

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

      That's just shifting what triggers the re-render. useContext will trigger re-renders where it's used.

  • @jacobthedev4979
    @jacobthedev4979 Год назад

    Awesome video!

  • @Kim-tr5op
    @Kim-tr5op Год назад +2

    haha, the interview. create a game, but u will get hired if only u can win the game you created

  • @ahmedokasha5240
    @ahmedokasha5240 Год назад

    bro u r crazy 😍🔥

  • @juhairahamed5342
    @juhairahamed5342 Год назад

    Good explanation

  • @nahkama4211
    @nahkama4211 Год назад

    Can anyone explain why we need isGameOver, solution and guesses on the dependency array? Mine works well without them.

  • @chumbucket3170
    @chumbucket3170 Год назад

    Could someone explain isFinal={!isCurrentGuess && guess != null} not sure exactly how it works in determining that enter was pressed and the guess was finalised

  • @rajabhishek6410
    @rajabhishek6410 Год назад

    Please do a coding round on Java also

  • @ziadamer7621
    @ziadamer7621 Год назад

    proo u r savage❤

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

    I cant fetch the api. Its getting blocked by CORS policy

  • @SunilparajuliKenshin
    @SunilparajuliKenshin 8 месяцев назад

    at the minute 25; when you use splice(0,-1), can we just copy currentGuess using spread operator and change with splice and set the state again?

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

      Spread and Splice is a waste because we're using react state, it's better to use slice() because modifying the original string is bad practice in general for "immutable data handling". The ideal way is setCurrentGuess(prev => prev.slice(0, -1));

  • @amaryniuk
    @amaryniuk Год назад +1

    Hi. I am trying to follow along in my own codesandbox, but I get a CORS error when trying to use your API. How do you fix that?

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      Yeah this is because the AlgoExpert servers don't expect requests from non-algoexpert domains, so the browser blocks the request for security reasons. Technically you can disable cors in most browsers with some extensions, and that would work (although I wouldn't necessarily recommend doing that, and if you do make sure to re-enable it when you're done).
      Alternatively, if you own FrontendExpert, we released a version of this as a problem over there today with the same API (and requests to it will work from the FrontendExpert workspace).

  • @alanjamey2777
    @alanjamey2777 22 дня назад

    Anyone know what theme is he using?

  • @rarepanda3766
    @rarepanda3766 Год назад

    Please look up documentation. Using Fetch in "useEffect" is an anti pattern, you should avoid it and handle it by events. Especially look up beta/preview documentation

    • @ConnerArdman
      @ConnerArdman  Год назад +4

      I would actually disagree with the idea that using fetch in useEffect is an anti-pattern. Event handlers should usually be the first choice where they make sense, but not all data fetching happens in response to an event. In these scenarios, there really isn't another good place to do it without needing another framework on top of React. In this case, the data needs to be fetched when the component is first mounting. Since a component mounting is a React concept, there isn't going to be an event that directly maps to it and allows us to easily rerender the component when the fetch completes.
      If this were a production webpage, then I would probably want the solution to be sent down with the initial page load, likely via server-side rendering. That said, for this problem in an interview context I think useEffect was the correct choice (although _maybe_ it would be slightly cleaner to add a cleanup to that effect to cancel if the component unmounts, but that is mostly a non-issue since the component cannot unmount in this simple page).
      For reference, here is the page of the beta docs describing fetching data with useEffect:
      beta.reactjs.org/learn/synchronizing-with-effects#fetching-data

  • @moblin1010
    @moblin1010 Год назад +1

    Out of curiosity conner, how many years experience does Clement have? He's doing literally flying at crazy speed in working out the logic!

    • @ConnerArdman
      @ConnerArdman  Год назад +1

      In case there is confusion here, Clement is the interviewer and I am the interviewee in this one. But to answer your question, Clement learned to code in 2016 at a bootcamp and got his first full time job in 2017, so he has ~5-6 years of coding experience. I first learned frontend development in college in 2016, then I learned React at a Facebook internship in 2018. So I have about the same years of experience as him coding in JS/React, but with just under 2 years of that being time spent working full time.

    • @piyushchopade7878
      @piyushchopade7878 Год назад

      @@ConnerArdman So what if I just started learning React, any suggestions how should I approach? Any bootcamps? Your help is much appreciated. Please do reply.

    • @twerkyfingers
      @twerkyfingers Год назад

      @@piyushchopade7878 Learn some basic stuff like useState, useEffect and components. Get your hands dirty. Start making projects. Start with mini projects(for example minig games like Tic Tac toe), portfolio websites or trying to clone websites you like(for example Netflix, Spotify etc.). (I assume u have basic knowledge of JS)

  • @farhangq
    @farhangq Год назад +1

    good one👍

  • @HealthHabitsHQ.
    @HealthHabitsHQ. Год назад

    OK I will stop applying to jobs, 4 years into self-studying and just realized I totally suck.

    • @ConnerArdman
      @ConnerArdman  Год назад +3

      Don't do that, this is definitely not a level you need to be at to get your first job. This would have taken me at least twice as long to do (if I could even do it) when I was first learning and applying to jobs 😊

  • @krupeshanadkat635
    @krupeshanadkat635 Год назад

    It was amazing to watch this!! You completed the logic around 34 mins, honestly I would try to clean the code post that becz the soln you got is little messy 😅
    Thanks for recording this, really helpful :)

  • @ethanrussell7743
    @ethanrussell7743 Год назад

    I have been stuck on the same bug for 2 days and watched this vid and you had a syntax method I did not use that my boss did not catch either and now I can finally move on with my fucking project lmao.

  • @bitsens
    @bitsens 9 месяцев назад

    Could you do an angular interview?

    • @ConnerArdman
      @ConnerArdman  9 месяцев назад

      Probably not. I don’t know it very well tbh

  • @bench2328
    @bench2328 Год назад

    crazy stuff

  • @nishitsarvaiya1474
    @nishitsarvaiya1474 Год назад

    What is the font that he is using in the editor?

    • @ConnerArdman
      @ConnerArdman  Год назад

      This is Code Sandbox, so it's whatever their default font is.

  • @abbasghaith2799
    @abbasghaith2799 Год назад +3

    Failed to fetch api

  • @swastikjainsj
    @swastikjainsj Год назад

    I use stackover flow 🤣😂 for random numbers 😂🤣

  • @eo333
    @eo333 Год назад

    On the randomising part, why not use Math.random(words.length), i belive math.random can take a int and counts from 0? (just a refactoring thingie)

    • @ConnerArdman
      @ConnerArdman  Год назад

      This is true in a lot of other languages, but JavaScript's Math.random() doesn't accept any parameters unfortunately.

  • @hamzapaskingakhtar2654
    @hamzapaskingakhtar2654 Год назад

    Okay. If these are the types of question for a Bachelor Graduate or Intern or Entry Level Front end. Then I'm dead. Hahahaha

  • @archmad
    @archmad Год назад

    you actually dont need a random word, just a random indexOf number

  • @zul.overflow
    @zul.overflow Год назад

    "generate random number without stackoverflow" hahahahaha

  • @francisvianneysalvamante1080
    @francisvianneysalvamante1080 Год назад +1

    That was phenomenal! I am just a beginner web developer with 5 years of experience and no experience with React as it is quite intimidating for me but watching you just get this done is so inspirational.
    For the instance where the solution is "HELLO" and the user inputted more than 2 L's, I think we can handle that by just counting the number of instances of that letter in the word? I don't know if that makes sense. Hopefully it does. LOL

    • @ConnerArdman
      @ConnerArdman  Год назад

      Yeah if he asked me to handle that, that's pretty much what I would have done. I'm not sure of the exact rules actual Wordle uses, but it should just be some basic string manipulation.

    • @BlackDev
      @BlackDev Год назад

      Just Dive in its man I swear on me you won't regret it it's like putting Legos together typing it out didn't sound as fun as it did in my head but react is lit and its beginner friendly

    • @ZiosNeon
      @ZiosNeon Год назад

      5 years of experience is no beginner xd

  • @beyondlimits8159
    @beyondlimits8159 Год назад

    Can you make a video of your leetcoding experience?

    • @ConnerArdman
      @ConnerArdman  Год назад

      Yeah eventually I'll probably make a video around how I prepared for interviews. I just need to think of a good way to frame it, because honestly I don't think I did anything particularly unique.

    • @beyondlimits8159
      @beyondlimits8159 Год назад +1

      @@ConnerArdman then say that in the video! cuz in reality there's no special shortcut u can do.

  • @mdhasiburrahmannafiz9984
    @mdhasiburrahmannafiz9984 Год назад

    ❤️❤️❤️

  • @mainakmukhrjee6328
    @mainakmukhrjee6328 5 месяцев назад

    Could you please share the code?

    • @ConnerArdman
      @ConnerArdman  5 месяцев назад

      This was a long time ago, so I don't have it anymore. That said, we released a question on FrontendExpert for free based on this here: www.algoexpert.io/frontend/coding-questions/wordle
      The code is very similar, just cleaned up.

    • @mainakmukhrjee6328
      @mainakmukhrjee6328 5 месяцев назад

      @@ConnerArdman Thanks btw I solved it yesterday. It was a great question.

  • @zlackbiro
    @zlackbiro Год назад

    You should never use open array and do plain java script in react without holding something in the state or in block of the code. Also, react code need to be declarative, no imperative code and poly fills in open block inside the component. Always use function and block scoped logic (helper, handler function). Also, never use == in react or even in every java script code, its always ===.
    Next, to many if else if else running in to a if else hell. Use switch and code your cases if you have more then 2 if. In my react career, i never used for loop. Everything can be done in ES6+ way using higher order functions.

    • @ConnerArdman
      @ConnerArdman  Год назад

      I'm not sure I follow what you mean by not using "open arrays" without state or the part about polyfills. If you're referring to the tiles array, there was definitely a cleaner way to do that, but I don't think the solution I gave was incorrect in any way, especially for a short interview.
      As for the function and block scoped logic, I'm not really sure what you're referencing here either. The only code scoped outside of functions were constants, which is a generally accepted practice.
      I agree about == vs ===, but there is a special case with == null. When you do val == null, it essentially is also checking for undefined. Some people prefer this while others don't, but it certainly is not incorrect. For instance, at Facebook my team (and I believe most if not all teams) preferred == for the null case.
      For switch vs if/else blocks, I wouldn't fully agree with the idea that anything > 2 cases needs to be a switch. If the conditions are more complex than checking a single value, then switch cases can get complicated in my opinion, since they are meant to switch on possible cases for a single value. That said, my logic around the event.key probably could have been more readable.
      As for for loops, I've used a few traditional for loops in production code but mostly agree that ES6 functions should be used instead in most cases. In the case of the tiles loop, it probably would have been better to make sure the guess string was 5 characters and use map as Clement suggested, but in the timed interview I just had to do what came first/most naturally to me.

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

      There is nothing glaring bad about what he is doing for this type of interview scenario. Arrays are perfectly fine to use for operations that are needed for display logic or render logic, these aren't state, they need to be "computed" each paint. An improvement would be using useCallback to memoize handlers etc. Also memozing components that have heavy business logic needed in the renderer.

  • @muriukialex
    @muriukialex Год назад

    👏🏼

  • @hardtohandle5616
    @hardtohandle5616 Год назад +3

    He was prepared. There is no chance to come with the structure of the game in like 2 minutes. Staged for views

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

      Get better hater

  • @allsunday1485
    @allsunday1485 Год назад +2

    why did the event listener have to be removed?

    • @ConnerArdman
      @ConnerArdman  Год назад +8

      This is a really good question. React effects should always clean up after themselves. Each time the effect runs, a new event listener is created. But if the hook runs twice, we don't want two event listeners, so we need to remove the old one on cleanup before creating a new one. Additionally, if the component unmounts, we want to delete the event listeners so we don't have a bunch of useless event listeners when the user has navigated away from the portion of the application that needs them.

    • @allsunday1485
      @allsunday1485 Год назад +1

      @@ConnerArdman thanks bud!

    • @pjguitar15
      @pjguitar15 Год назад +1

      @@ConnerArdman Wow thanks for the really good explanation!

  • @rajabhishek6410
    @rajabhishek6410 Год назад

    Conor explained regex Bette than anyone!..