Thursday, September 4, 2025
HomeLanguagesJavascriptHow to Convert CFAbsoluteTime to Date Object and vice-versa in JavaScript ?

How to Convert CFAbsoluteTime to Date Object and vice-versa in JavaScript ?

CFAbsolute time is a standard time format on Apple devices and programming languages like Swift. It stores the amount of nanoseconds since January 1, 2001. At its core, it is similar to epoch time, except it stores times closer to the modern day, using 2001 as a reference point rather than 1970. Here is Apple’s official documentation for CFAbsolute time.

To convert CFAbsoluteTime to Date object and vice-versa, we’ll mainly using the JavaScript Date.getTime() method, which provides the amount of milliseconds since January 1, 1970. We’ll also use the Date.setTime() method, that sets the amount of milliseconds since January 1, 1970.

Converting From CFAbsoluteTime to a Date Object

To convert from CFAbsolute Time to a normal date, we can create a Date object from January 1, 2001, and simply add the CFAbsolute time value (in milliseconds) to the Date.getTime() value.

Javascript




const CFAbsoluteTimeToDate = (CFATime,
    unitConversionValue = 1000) => {
    const dt = new Date('January 1 2001 GMT');
    dt.setTime(dt.getTime() + CFATime * unitConversionValue);
    return dt;
};
  
console.log(CFAbsoluteTimeToDate(639494700));


Output:

2021-04-07T13:25:00.000Z

Converting From a Date Object to CFAbsoluteTime

For converting back to CFAbsolute time, we can simply subtract the Date.getTime() values of the date and January 1, 2001, and then convert that value from milliseconds to nanoseconds.

Javascript




const DateToCFAbsoluteTime = (dt,
    unitConversionValue = 1000) => {
    const CFADate = new Date('January 1 2001 GMT');
  
    // unitConversionValue;
    return (dt.getTime() - CFADate.getTime());
};
  
console.log(DateToCFAbsoluteTime(
    new Date("April 5 2021")));


Working With CFAbsoluteTime in Milliseconds or Nanoseconds

Some versions of CFAbsoluteTime are stored in milliseconds or nanoseconds instead of seconds. To work with these types, simply change the value of the unitConversionValue argument as follows:

Storage Type unitConversionValue
Seconds 1000
Milliseconds 1
Nanoseconds 0.000001

By default, the program will use seconds, which is the most common CFAbsoluteTime storage type.

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32263 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6627 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11858 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6696 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS