@envatotuts

JavaScript beginner? Watch the beginner's course, Learn Modern JavaScript Fundamentals in 7 Hours!, first:
https://www.youtube.com/watch?v=X1umyXgJsA0

@mushroommagic1697

Thank you so much! I finally understand arrays and their scope.

@shannonstumpf1861

the clarity of your explanations is 100%.  thank you for making this

@mayank6636

Thanks for such precise and top to the point video

@TheBlueDude71

Amazing video, hope more people see this. Thank you.

@_TJProductions

100% the most informative and super easy to understand video on Arrays. Thanks!

@1tav0

great video thanks for the easy to follow style

@NoMoJoMo

Thanks so much for this video, really helped me understand methods better!

@berkoo5497

This is the best Video i have ever seen! Thanks for it 🙌🏾

@jamesp9823

Nice refresher course

@TheWoWganker

Well done. Splendid video.

@Exodus_Tola

Ur VS code is very clean can u mention me how i clean my vs code like u

@DesiVillagerEurope

@ 25:58   how is it possible index . Index starts from zéro.  It is shown 1 . Is it position

@hakimmazlan8391

why got a bug in shopping list if do increment in while loop body?

@luciusrex

this was awesome. thank you!

@6ent

great video not enough recognition

@1hmet

Adammmm yapmış aaaabiii

@gatts6727

tks!!

@bobfluencer

no map method?

@afriend8961

Does anyone know how to style array indexes individually? I've used the following but I'm missing how to style individually. Thanks! =).

const arrey6 = [" blue", " red", " green", " yellow"];
document.getElementById('arrays6').style.color='blue'; -- styles whole array.

And:

const arrey6 = [" blue", " red", " green", " yellow"];
document.getElementById('arrays6').innerHTML=arrey6[2];
document.getElementById('arrays6').style.color='blue'; -- styles one index.