What is the best way to calculate Age using Flex?
|
|
The previous correction is still incorrect: you don't need to reduce 1 year on your birthday! if (dob.month > now.month || (dob.month == now.month && dob.date > now.date)) { yearsOld--; } |
||
|
|
|
|
The first answer is incorrect. The last comparison should be:
|
|||
|
|
|
|
Here's a one-liner:
|
||
|
|
|
|
var userDOB : Date = new Date(year,month-1,day); var today : Date = new Date(); var diff : Date = new Date(); diff.setTime( today.getTime() - userDOB.getTime() ); var userAge : int = diff.getFullYear() - 1970; |
||
|
|
|
|
Here is a little more complex calculation, this calculates age in years and months. Example: User is 3 years 2 months old.
|
||
|
|
|
|
You could also do it roughly the same as discussed here: (translated to AS3)
|
||
|
|
|
|
I found an Answer at the bottom of this page in comments section Repeated here for posterity (should the original comment be lost)
|
||
|
|
