P
ROTOTYPE
I'm Not Only The Prototype, I'm Also A Member.
home
▪
stats
▪
search
▪
linkback
▪
about
▪
FAQ
| user: guest,
login
,
register
Date
:
Date.getElapsedDaysOfYear
author:
Madokan
[+]
,
Submitted: 03.02.04 8a
• Last Edit: 03.02.04 8a
// Value 86400000 result from (millisec*seconds*mins*hours) (1000*60*60*24) Date.prototype.getElapsedDaysOfYear = function() { return Math.floor((this-new Date(this.getFullYear(), 0, 1))/86400000)+((new Date(this.getFullYear(), 2, 0).getDate()) == 29 ? 1 : 0); };
usage
// Usage datum = new Date(); trace("Days: " + datum.getElapsedDaysOfYear());
Add Comment
[+]
›opyleft 2001-2010. Layer51 is: Jaime Prado.
@