คำตอบจาก Lauri Oherd ใช้ได้ดีกับสตริงส่วนใหญ่ที่เห็นในไวลด์ แต่จะล้มเหลวหากสตริงมีอักขระเดี่ยวในช่วงคู่ตัวแทนคือ 0xD800 ถึง 0xDFFF เช่น
byteCount(String.fromCharCode(55555))
ฟังก์ชันที่ยาวขึ้นนี้ควรจัดการกับสตริงทั้งหมด:
function bytes (str) {
var bytes=0, len=str.length, codePoint, next, i;
for (i=0; i < len; i++) {
codePoint = str.charCodeAt(i);
if (codePoint >= 0xD800 && codePoint < 0xE000) {
if (codePoint < 0xDC00 && i + 1 < len) {
next = str.charCodeAt(i + 1);
if (next >= 0xDC00 && next < 0xE000) {
bytes += 4;
i++;
continue;
}
}
}
bytes += (codePoint < 0x80 ? 1 : (codePoint < 0x800 ? 2 : 3));
}
return bytes;
}
เช่น
bytes(String.fromCharCode(55555))
จะคำนวณขนาดของสตริงที่มีคู่ตัวแทนได้อย่างถูกต้อง:
bytes(String.fromCharCode(55555, 57000))
ผลลัพธ์สามารถเปรียบเทียบกับฟังก์ชันในตัวของโหนดBuffer.byteLength
:
Buffer.byteLength(String.fromCharCode(55555), 'utf8')
Buffer.byteLength(String.fromCharCode(55555, 57000), 'utf8')