How would I be able to iterate through an array and display 3 values in sequential order at a time through a click event?
Example:
var array = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"];
Looking for result of:
1,2,3
and then click for 4,5,6
then 7,8,9
.