79308139

Date: 2024-12-25 18:29:18
Score: 0.5
Natty:
Report link
const [month, day, year] = new Intl.DateTimeFormat('en-US', {
  day: '2-digit',
  month: '2-digit',
  year: 'numeric',
})
  .format(new Date())
  .split('/');

console.log(`${day}.${month}.${year}`);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fakie