Get storefront language and currency
Ecwid.getStorefrontLang()
Ecwid.getStorefrontLang()var lang = Ecwid.getStorefrontLang();
console.log(lang);
//prints
// "en"Ecwid.formatCurrency()
Ecwid.formatCurrency()var currencyFormat = Ecwid.formatCurrency(12.99);
console.log(currencyFormat);
// prints
// "$12.99"Last updated
Was this helpful?
