Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created September 27, 2021 11:49
Show Gist options
  • Save ABooooo/b7087d147c82a429b85b893574922f9b to your computer and use it in GitHub Desktop.
Save ABooooo/b7087d147c82a429b85b893574922f9b to your computer and use it in GitHub Desktop.
// convert to number in currency format
var invValueFormat = new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'EUR' }).format(response.result.sumCostPrice);
// remove dot and replace with space
invValueFormat = invValueFormat.replace(/\./g, ' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment