Assigning a Date variable to another one will copy the reference to the SAME value. This means that changing one will change the other. How can I actually clone or copy the value?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Use the Date object's
In Safari 4, you can also write:
...but I'm not sure whether this works in other browsers. |
|||||||||||||||
|
|
This is the cleanest approach var dat = new Date() var copyOf = new Date(dat.valueOf()) |
|||||||||||||||
|
|
I found out that this simple assignmnent also works:
But I don't know how "safe" it is. Successfully tested in IE7 and Chrome 19. |
|||
|
|
|
Simplified version:
|
||||
|
|
|
BAD (original):
GOOD (new, edited):
|
|||||||
|
|
you can use universal method:
and others... |
|||||
|