Arrays
Collections
Filter and Apply
One of the real-world analogies for collections would be a purse or a pouch filled with various things such as coins. The coins would be the items and the pouch itself is the collection. So, based on this analogy, we can say that a collection is a container of sorts that may have zero, one, or many items in it. You might remember that we already have something like that—an array. The array fits this description exactly because it can contain zero, one, or many items inside it. If this is the case, do we really ...