I have to concat a numeric value with currency code, but the currency get append after the numeric value like د.إ111 but I want the currency to be appended in the front and then the price value
let price = 111;
let currency = "د.إ";
let str3 = currency.concat(price)
console.log(str3)