I have a javascript code:
newDate: function(days) {
var newDate = new Date( parseInt(startDate) + 1*1000*3600);
var date = newDate .getDate();
return date ;
},
Seems like this is the part of the program that produces different results on Android and iOS. All the rest data is the same. How can it produce different results on Android vs iOS?