Arrays in Javascript | Arrays Tutorial for Beginners

Поділитися
Вставка
  • Опубліковано 1 січ 2025

КОМЕНТАРІ • 22

  • @iamtharunraj
    @iamtharunraj 7 місяців тому +2

    Wow, this 3-year-old tutorial is so great! Arrays is one of the concepts *I always struggle to understand.* But, this video has helped me learn lots of new concepts about Arrays. Thank you so much Dave, you're an excellent teacher!

  • @greatoutdoors6318
    @greatoutdoors6318 3 роки тому +3

    I used google to figure out how to configure Visual Studio Code with the console output just like your video. Then I followed along and paused to experiment further. Very helpful! This is my favorite way to learn how to code. Thanks!

  • @CondeAlberto
    @CondeAlberto 2 роки тому +9

    You have a gift for explaining and teaching.
    Great once more.

  • @9nikolov
    @9nikolov 9 місяців тому +1

    This is the best explanation of multi-dimensional arrays I have ever seen.
    You are a really really good teacher Mr. Gray ❤

  • @Grihlo
    @Grihlo 2 роки тому +2

    Amazing practical explanation! Thank you!
    I remember Linear Algebra course at my university - it was a nightmare because of the instructor, and eventually I just hated everything related to arrays and stuff.
    I wish all the instructors have at least part of that gift for explaining and teaching that you have.

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  2 роки тому +1

      Glad it was helpful and thank you for the kind words, Grigory! 🙏💯

  • @konstantinzakharov5643
    @konstantinzakharov5643 Рік тому +1

    Informative and entertaining as always. When I come to this channel I understand that studying can really be a fun and exciting thing to do! Thank you, Dave!

  • @djheckler92
    @djheckler92 3 роки тому +12

    Here's the code for anyone that doesn't want to type it out:
    const equipShelfA = ["baseball", "football", "volleyball"];
    const equipShelfB = ["basketball", "golf balls", "tennis balls"];
    const clothesShelfA = ["tank tops", "t-shirts", "jerseys"];
    const clothesShelfB = ["sweat tops", "sweat pants", "hoodies"];
    const equipDept = [equipShelfA, equipShelfB];
    const clothesDept = [clothesShelfA, clothesShelfB];
    const sportsStore = [equipDept, clothesDept];

  • @Awpsun
    @Awpsun 5 місяців тому

    Loved this lecture! Just Finished it and Understood everything Thankyou so much DAVE

  • @patrickonoigboria2621
    @patrickonoigboria2621 3 місяці тому +1

    do you have an app cause i would like to see it

  • @jamshidtashkent1976
    @jamshidtashkent1976 2 роки тому

    Thank you for very interesting lessons

  • @amankumarsingh7311
    @amankumarsingh7311 Рік тому

    thank you so much dave :) .
    would be really nice if you put in notes below the video . #Grateful

  • @patrickonoigboria2621
    @patrickonoigboria2621 3 місяці тому +1

    hi you are good but i can't quite see it clearly

  • @yeahoahpy705
    @yeahoahpy705 8 місяців тому +1

    I can already tell arrays are gonna be a pain in the ass😭

  • @onlinestudies-j3m
    @onlinestudies-j3m Рік тому +1

    why do you always uses const in most of your videos.

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  Рік тому +2

      You should whenever possible. I could write an article or create a video on the reasons. Here's a brief StackOverflow explanation: stackoverflow.com/questions/41086633/in-javascript-why-should-i-usually-prefer-const-to-let