Last active
September 19, 2021 07:32
-
-
Save sunviwo/5fc4b018facc411591aeca80b0b52e86 to your computer and use it in GitHub Desktop.
Handy Javascript snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*====== 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