Using Chrome and and in the console new Date(2015, 12, 20) will return the following in the Chrome console window...
Wed Jan 20 2016 00:00:00 GMT-0500 (Eastern Standard Time)
This also occurs in my javascript (js) file.
I have also tried parseInt with the same result
var month = parseInt(valueUnwrapped.getUTCMonth() + 1); //months from 1-12
var day = parseInt(valueUnwrapped.getUTCDate());
var year = parseInt(valueUnwrapped.getUTCFullYear());
var dte = new Date(year, month, day);