The list to iterate (e.g. songs, albums, etc.)
Callback (It is passed each item of the list and its index), return true to break the loop
Optional
final_callback: anyCallback to be executed after all items have been gone through
listForEach(tracklist, function (item, idx) { ... });
listForEach
Execute a callback function for every item in a SharedList, using getValue.