I'm writing a prototype function that takes a date from the object and then adds a gigasecond (10 billion seconds) to it. Here is my code:
var Gigasecond = function(userDate){
this.userDate = userDate;
}
Gigasecond.prototype.date = function(){
var gigaDate = this.userDate;
var gigaSecond = Math.pow(10, 9);
console.log("This is the first console log: " + this.userDate);
//adding the billion seconds to the date
gigaDate.setFullYear(gigaDate.getFullYear() + Math.floor(gigaSecond / 31536000));
gigaDate.setDate(gigaDate.getDate() + Math.floor((gigaSecond % 31536000) / 86400));
gigaDate.setHours(gigaDate.getHours() + Math.floor(((gigaSecond % 31536000) % 86400) / 3600));
gigaDate.setMinutes(gigaDate.getMinutes() + Math.floor((((gigaSecond % 31536000) % 86400) % 3600) / 60));
gigaDate.setSeconds(gigaDate.getSeconds() + (((gigaSecond % 31536000) % 86400) % 3600) % 60);
console.log("this should equal the first console log: " + this.userDate);
}
The date entered into this.userDate is Sunday, Sep 13, 2015 18:00. I want to keep this.userDate intact for another part of the function. Problem is, when I change gigaDate, it also changes this.userDate. Here is the console output:
This is the first console log: Sun Sep 13 2015 18:00:00 GMT-0600 (MDT)
this should equal the first console log: Thu May 30 2047 19:46:40 GMT-0600 (MDT)
Any hints?