In JS I have two variables:
let str1 = '\u04101';
let str2 = 'A1';
If I use console.log for each of them then 'A1' will appear in console for both.
So console.log(str1); // returns A1
If I compare them in a IF statement it returns FALSE.
console.log(str1 == str2) // returns FALSE
How to return TRUE in compare case?
I tried using normalize method of String but without any success.