If at all possible, without JavaScript libraries or lots of clunky code I am looking for the simplest way to format a date two weeks from now in the following format:
One more solution in the sea of solutions.
let suffix = (day >= 4 && day <= 20) || (day >= 24 && day <= 30) ? "th" : ["st", "nd", "rd"][day % 10 - 1];