I want to create a Date object in javascript, which represents the year 0001, 2014 years ago.
I tried with
d = new Date(); d.setYear(1); console.log
You can use the string version of the constructor:
console.log(new Date("0001-01-01"));