Skip to content

Instantly share code, notes, and snippets.

@sunviwo
Last active September 19, 2021 07:32
Show Gist options
  • Save sunviwo/5fc4b018facc411591aeca80b0b52e86 to your computer and use it in GitHub Desktop.
Save sunviwo/5fc4b018facc411591aeca80b0b52e86 to your computer and use it in GitHub Desktop.
Handy Javascript snippets
/*====== RANDOM NUMBER BETWEEN TWO GIVEN VALUES ======= */
const randomInt = (min, max) =>
Math.floor(Math.random() * (max - min) + 1) + min;
/*====== DATE DIFF ======= */
const formatMovementDate = function (date, locale) {
const calcDaysPassed = (date1, date2) =>
Math.round(Math.abs(date2 - date1) / (1000 * 60 * 60 * 24));
const daysPassed = calcDaysPassed(new Date(), date);
console.log(daysPassed);
if (daysPassed === 0) return 'Today';
if (daysPassed === 1) return 'Yesterday';
if (daysPassed <= 7) return `${daysPassed} days ago`;
return new Intl.DateTimeFormat(locale).format(date);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment