ecommerce-shopping-cart icon indicating copy to clipboard operation
ecommerce-shopping-cart copied to clipboard

Error message

Open Darkstylez96 opened this issue 4 years ago • 1 comments

TypeError: num.toFixed is not a function formatCurrency C:/Users/Darkstylez/ecommerce-shopping-cart-master/src/util.js:3 1 | export default { 2 | formatCurrency: function (num) {

3 | return '€' + Number(num.toFixed(1)).toLocaleString() + ' '; 4 | } 5 | }

Darkstylez96 avatar Mar 12 '20 13:03 Darkstylez96

try Number(num).toFixed(1).toLocaleString()

basir avatar Jun 20 '20 05:06 basir