const yourNumber = -100 const nf = new Intl.NumberFormat('en-GB', { style: 'currency', currency: 'GBP' }) console.log(nf.format(yourNumber)) Run code snippet