Use a advanced feature Intl to format correctly price ``` const formatter = new Intl.NumberFormat('es-ES', { style: 'currency', currency: 'EUR' }) return formatter.format(price) ```
Use a advanced feature Intl to format correctly price