My array contains the following values:
var items = [Thursday,100,100,100,100,100,100]
I am retrieving these values from the URL query string which is why they are all in string format. I am looking for a way to make all columns except the first one as numbers. Since the number of columns in the array may change, I need a solution where items[0] remains a string but items[n] always turns into a number. Is there any way to achieve this?