16
Nov
07

Calculate someones age with Javascript

I needed to create a simple function that calculated a person age using Javascript. The problem here is that the Date object in Javascript returns the time in milliseconds so we need to convert that to years, this is how.

var displayField;
var someonesBirthDate = someonesBirthDate;
var now = new Date();
var ms = now.valueOf() - someonesBirthDate.valueOf();
var minutes = ms / 1000 / 60;
var hours = minutes / 60;
var days = hours / 24;
var years = days/365;
displayField.DataValue = years;

Simple huh?


6 Responses to “Calculate someones age with Javascript”


  1. 1 romb
    April 8, 2008 at 9:23 am

    Cool :)
    Impressed. May look at http://snippets.dzone.com/posts/show/623 to compare :)

  2. 3 Rohit Sarma
    June 10, 2009 at 10:46 am

    Not working dear !!!

  3. 4 jb
    June 26, 2009 at 4:05 am

    I created an Excel spreadsheet that automatically calculates ages, in Column B, using a formula based on birthdays entered in column A. I use this for my whole family, dozens of rows, and I only have to enter the birthdays once. Every time I open or refresh the file, it recalculates the ages. If the birthday is in cell A1, the Excel formula for cell A2 is is =ROUNDDOWN((NOW()-A1) /365.25,0)
    Could I use your elegant script in the .html file created from this spreadsheet? Would it automatically update the ages on refresh? The Excel file freezes the values when converted to HTML.
    Thanks
    JB

  4. 5 pixel16
    June 26, 2009 at 4:59 am

    You can use it in any way you want.
    If you manage to find a way of passing your rows values to the function parameters then it should work.
    I dont really have experience doing that, so I cant help you there
    Sorry

  5. 6 Ajay khadwal
    September 1, 2009 at 6:12 am

    How to calculate the age through Date of Birth but the age is 24 year .


Leave a Reply




 

November 2007
M T W T F S S
    Dec »
 1234
567891011
12131415161718
19202122232425
2627282930  

Flickr Photos

midnight city still

Oneonta

Untitled

Untitled

Man should always remember his connection to mother earth.

Let it snow... Let it snow... Let it snow...

Scream

Añada 09

morning windows

Palm trees at night

More Photos

Leave your comment

Blog Stats

  • 115,147 hits