79818291

Date: 2025-11-12 22:26:10
Score: 0.5
Natty:
Report link

This is natively supported by Intl.NumberFormat now and can be integrated with libraries like format.js

console.log(Intl.NumberFormat('en', {
    maximumSignificantDigits: 3,
    notation: 'compact',
    style: 'unit',
    unit: 'byte',
    unitDisplay: 'narrow'
}).format(1050000));

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: novwhisky