Is there any build-in string length support of EcmaScript UTF-16 32-bit Char?

32 Views Asked by At

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?

1

There are 1 best solutions below

1
On

We can use Destructuring as follows:

const poop = '';
console.log([...poop].length);
console.log(Array.from(poop).length);