Array Reduce - Javascript In Depth

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024

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

  • @Pharizer
    @Pharizer Год назад +19

    This channel is a goldmine! You def deserve more views

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

      Thank you very much! I’m just glad to be able to help people with these topics 😊 Can’t wait for the upcoming videos!

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

    let gitHubExerciseCompleted = false;
    let understood = false;
    let otherSourcesChecked = false;
    let naderVideoChecked = false;
    if (otherSourcesChecked === true){
    understood = false;
    gitHubExerciseCompleted = false;
    }
    if( naderVideoChecked === true){
    understood = true;
    gitHubExerciseCompleted = true;
    }

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

      Nice. Haha, thanks Michel! Some of these exercises are getting quite tough and reduce is quite tricky so I’m glad you’re enjoying them and powering through! 🥳🚀

  • @KRAKENBACK..
    @KRAKENBACK.. Год назад +8

    23 videos in never lookin back! Thank you Nader

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

      Just powering through! Nice work - I can't wait to see how you do on the project 🚀

  • @404React_Media
    @404React_Media Год назад +7

    You one of the best when it comes to breaking down JS. Keep up the good work!

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

      Thanks a lot, that means a lot 😊 Will keep them coming, haha! 🥳

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

    How do you higlight several lines and instantly comment out all of it. Mine gets erased and replaced by //
    Love ur vids btw. Keep it up!

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

      Thanks! For commenting, if you highlight the code and do cmd+/ on mac or ctrl+/ on pc it should work 😊

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

    S*#t is getting real here! Haha. Tough! Onto the exercises.

  • @luisescobar5012
    @luisescobar5012 11 месяцев назад +3

    I agree this channel is a gold mine !

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

    Easy to understand explanation, super excited to keep learning more thank you for teaching !

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

      You're very welcome! Glad you're finding these helpful and (hopefully) fun, haha! 😃

  • @OXIDE777-is6gs
    @OXIDE777-is6gs Год назад +3

    I totaly agree, you deffinetely deserve more views, I already shared your content to my class, hope they will hang around.

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

    The best video on array.reduce... ever!

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

      Thanks Rajea! I’m so glad you find it helpful haha, since this is such a confusing but important topic (in every language)! 😊

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

    where can i find MORE this type of exercises to increase my understanding of method. I have downloaded your repository but i have completed all exercise ;p

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

      Haha, I would love to create more of these sometime! I'd encourage you to try using map/filter/reduce more in your code your write for all your other tasks/problems and see if you can solve it with them instead. That's always good practice and you'll see it applies to many more things and places than you'd have guessed 😊

  • @nguyennguyen-nm3oq
    @nguyennguyen-nm3oq Год назад +2

    Could you mention a quick blurb on how these tools are applied with industry examples? It would help contextualize the raw code and relate the value of the lesson. Thank for sharing your knowledge Sir.

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

      Good point! I designed most of these exercises to simulate similar tasks you might see in industry. There are so many possible fields you could apply these to so I tried to keep it applicable but generic and interesting. 🤓
      In some of the later examples as we learn more I do sprinkle in some thing like web related or interview question related where possible 😊
      I would love to make a full series walking through using these building blocks start to finish to build an actual product that’s full stack though. I think I can really bring in the most industry comparison there 🤞🏽

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

    My absolute thanks. Your diagrams, explanations and thought process has helped me immensly. Thank you so much, Nader.

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

    I think finding small and large numbers we don't neet to pass initial value because accumulator will be array [0] and currentvalue array[1] so we can find wich one is small or large by comparing and then return accumulator or currentValue

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

    very informative, great work! Keep going. I am likes every your video

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

    This channel is a gem, thank you soo much for creating such an amazing playlist to learn js in depth

  • @aliajellu
    @aliajellu Месяц назад

    you're a great teacher. please keep going.

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

    really good explanations, thanks

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

    The slides were really helpful here

  • @EliHacıyev-p7v
    @EliHacıyev-p7v 3 месяца назад

    Thanks master

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

    Thank you!

  • @KRAKENBACK..
    @KRAKENBACK.. Год назад +1

    i figured out how you would get rid of the - at the end because that kept me up last night wanting to figure out how lol, I ended up using the slice method on concatCities.slice(0, -1). We start slice at 0 to keep the string from the beginning and -1 to get rid of that last - after toronto.

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

      Nice solution! Haha, you're already turning in to a dev 😂 "The code keeping me up at night... must solve!"