I have the following array and three vars:
array1 = ['']
dateOutput = 1/1/14
timeOutput = 12am
tallysave = 100
I was using this to push in the three vars on a push
array1.push(dateOutput + ', ' + timeOutput + tallysave)
However how can I push each of the vars into the array so they will be like this when pushed: (multi-dimensional array?)
array = [
{ "date": dateOutput, "time": timeOutput, },
];