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!
@greatoutdoors63183 жыл бұрын
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!
@DaveGrayTeachesCode3 жыл бұрын
You're welcome! 🙏
@CondeAlberto2 жыл бұрын
You have a gift for explaining and teaching. Great once more.
@DaveGrayTeachesCode2 жыл бұрын
Thank you for the kind words, Alberto! 🙏🙏
@9nikolov10 ай бұрын
This is the best explanation of multi-dimensional arrays I have ever seen. You are a really really good teacher Mr. Gray ❤
@DaveGrayTeachesCode10 ай бұрын
Thank you!
@Grihlo2 жыл бұрын
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.
@DaveGrayTeachesCode2 жыл бұрын
Glad it was helpful and thank you for the kind words, Grigory! 🙏💯
@konstantinzakharov5643 Жыл бұрын
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!
@Awpsun6 ай бұрын
Loved this lecture! Just Finished it and Understood everything Thankyou so much DAVE
@djheckler923 жыл бұрын
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];
@amankumarsingh73112 жыл бұрын
thank you so much dave :) . would be really nice if you put in notes below the video . #Grateful
@DaveGrayTeachesCode2 жыл бұрын
You're welcome!
@jamshidtashkent19762 жыл бұрын
Thank you for very interesting lessons
@DaveGrayTeachesCode2 жыл бұрын
You're welcome!
@patrickonoigboria26214 ай бұрын
do you have an app cause i would like to see it
@patrickonoigboria26214 ай бұрын
hi you are good but i can't quite see it clearly
@chiggywiggy524Ай бұрын
Increase video quality to 1080p
@yeahoahpy7059 ай бұрын
I can already tell arrays are gonna be a pain in the ass😭
@onlinestudies-j3m Жыл бұрын
why do you always uses const in most of your videos.
@DaveGrayTeachesCode Жыл бұрын
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