Format numbers using compact notation
const number = 2500000;
// Basic usage
const formatter = new Intl.NumberFormat('en-US', {
notation: 'compact',
compactDisplay: 'short' // 'short' or 'long'
});
console.log(formatter.format(number)); // "2.5M"
vijayt.hashnode.dev1 min read