Java Arrays
You're probably not the first one to wonder how arrays work in Java. And you haven't found a clear answer yet! I have some good news... This post is all about understand how arrays work, how to create them, how to store data and much more. I promise, you won't be disappointed!
Let's dive into the world of those mysterious arrays!
What is an Array

Java Arrays are part of primitive types. It means an array is part of the language syntax, not a class.
An Array data structure consists of a collection of elements stored sequentially and accessible through an index (usually an integer).
