As we know ECMAScript 2015 added String.fromCodePoint()
for 32-bit char.
var poop = '';
console.log(poop.length);
But if we still use String.length()
, it will alse treat all chars at string 16 bit. Is there any build-in string length support of EcmaScript UTF-16 32-bit Char?
We can use Destructuring as follows: