I have an array
of list objects [UsersList]
. I wish to append an indicator into the [UserList]
on every 60th index
.
So the outcome I would like to have is something like below:[user1,...user60,"Yes",user61,user62]
Can someone help me on how to append on this outcome and how do I loop it to display it?
Thanks