Java ArrayList methods
Remember that to add something at a certain index, use
listName.add(i, "Thing to be added");
where i is the index where you want the item added.
To change an item at a certain index, use
listName.set(i, "New thing");
but remember that you can only ch...
epikoeni.hashnode.dev1 min read