I'm iterating through an array and sorting it by values into days of the week.
In order to do it I'm using many if statements. Does it make any difference to the processing speed if I use many ifs, versus a set of else if statements?
I'm iterating through an array and sorting it by values into days of the week.
In order to do it I'm using many if statements. Does it make any difference to the processing speed if I use many ifs, versus a set of else if statements?