Skip to content

Instantly share code, notes, and snippets.

function kr(value) {
return new Intl.NumberFormat("da-DK", {
style: "currency",
currency: "DKK",
maximumFractionDigits: 0
}).format(value);
}
function pct(value) {
return value.toFixed(2).replace(".", ",") + " %";