Percentage Formatter

Formats a number as a percentage.

Contributed by @itsbrunodev

javascript
function formatPercentage(value, decimalPlaces = 2) {
  return `${(value * 100).toFixed(decimalPlaces)}%`;
}
javascript
formatPercentage(0.1234); // "12.34%"
GitHubEdit on GitHub