Which methods of instantiating a Javascript Date object are supported by Teamstudio Unplugged?
The following snippet gives an "Invalid Date" :-
var startDate = new Date("2015-10-27 10:00:00");
alert(startDate.toString());
Whereas this snippet returns a valid date string :-
var endDate = new Date(2015,10,27,10,00,00,00);
alert(endDate.toString());
which would suggest I can't create a Date object using "new Date(dateString)". Is this correct?
I am using the latest version of Unplugged (3.1.9) on iOS.