i am trying to merge two string in hebrew with letter and number , the string Does not connect to a correct string and the number and sign - moves to the end of the sentence
the result should have been "בנק ישראל ב - 8752154 בדיקת טסט נוסף"
and the result is : 8752154 - בנק ישראל ב בדיקת טסט נוסף
var result="";
var field = "8752154 - בנק ישראל ב";
var text1=" בדיקת טסט נוסף ";
result = field + text1 ;
console.log(result);
The strings will be concatenated in the order in which you specify. For example:
If you want to reverse the order in which the strings are concatenated, then reverse the order in which you concatenate them.