Now this seems kind of odd...
I have an array like this:
a = ["2014", "03", "12", "08", "43", "51"]
which I need to convert into a DateTime object. However:
new Date(a[0], a[1], a[2], a[3], a[4], a[5]);
returns Date {Sat Apr 12 2014 08:43:51 GMT+0200 (CEST)}
Question
What happened to March?