When I create a date like this, everything works fine:
var someDate = new Date("2013,2,1");
.
However, I want to include time with this date as well. The following suggestion on https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date was made:
var someDate = new Date("2013,2,1,1,20");
But it results in an Invalid date
error! How can I successfully create a date with time included?