Jahamanga Statistics

This is statistics of manga that user read on jahamanga
Naruto =219
One Piece = 161
Crayon Shin-chan= 119
Bleach = 113
Doraemon = 97
Detective Conan = 58
Slam Dunk = 52
Hunter x Hunter = 43

mangaStatistic.png

 
0
Kudos
 
0
Kudos

Now read this

The Optimal Way to Use List

public List<String> getNames(List<Human> humans) { List<String> names = new ArrayList<>(); for(Human human : humans) { names.add(human.name); } return names; } I bet you are understand what code will do. It’ll get... Continue →