---
original_url: "https://jace.pro/blog/converting-dates-and-times-to-readable-fuzzy-versions/"
format: markdown
ai_optimized: true
---

Converting dates and times to readable fuzzy versions# Converting dates and times to readable fuzzy versions

November 12, 2022 [javascript](/tags/javascript/)

  Enable AI AnimationI﻿ am not sure where I got this but I thought it could be useful. You know how some sites show “3d ago” instead of the YYYY-MM-DD hh:mm:ss version. Here’s a small function that does that for you.

`//debug lines
var yourUpdated = '2021-08-13T16:54:00Z'

let getFuzzyDate = function (dateTime) {
  var past = new Date(dateTime).getTime()//ms since epoch
  var now = new Date().getTime()//now
  var differenceInSeconds = (now - past) / 1000//get seconds
  var thresholds = [
    { threshold:                       60 - 1, divideBy:                 1,  fuzzyUnit: 's' },
    { threshold:                  60 * 60 - 1, divideBy:                 60, fuzzyUnit: 'm' },
    { threshold:             24 * 60 * 60 - 1, divideBy:            60 * 60, fuzzyUnit: 'h' },
    { threshold:        30 * 24 * 60 * 60 - 1, divideBy:       24 * 60 * 60, fuzzyUnit: 'd' },
    { threshold:       365 * 24 * 60 * 60 - 1, divideBy:  30 * 24 * 60 * 60, fuzzyUnit: 'mo' },
    { threshold: 100 * 365 * 24 * 60 * 60,     divideBy: 365 * 24 * 60 * 60, fuzzyUnit: 'y' }
  ];
  var filtered = thresholds.filter((grouping) => {
    return differenceInSeconds < grouping.threshold
  });
  return Math.round(differenceInSeconds / filtered[0].divideBy) + filtered[0].fuzzyUnit + ' ago'
}
console.log(getFuzzyDate(yourUpdated))`
---
[View this page on GitHub](https://github.com/jacebenson/jace.pro/tree/main/./src/posts/2022/2022-11-11-converting-dates-and-times-to-readable-fuzzy-versions.md).

[Converting dates and times to readable fuzzy versions](https://jace.pro/blog/converting-dates-and-times-to-readable-fuzzy-versions/) [Jace Benson](https://jace.pro) ![Jace Benson](https://jace.pro/icon-512x512.png)

---

*This content is from Jace Benson's ServiceNow and tech blog at jace.pro*
*Original post: https://jace.pro/blog/converting-dates-and-times-to-readable-fuzzy-versions/*
