showing results for - "nodejs string value check 3d 3d 3d and 21 3d 3d"
Charlotte
08 Jul 2018
1const c1 = 'e\u0301';
2const c2 = 'é';
3console.log(c1.normalize() === c2.normalize()); // trueCode language: JavaScript (javascript)
similar questions