Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 211 Bytes

find_the_length_of_string_in_bytes.md

File metadata and controls

8 lines (7 loc) · 211 Bytes

Find the length of strng in bytes

Convert a given string to a Blob Object and find its size

const byteSize = str => new Blob([str]).size;
byteSize('😀'); // 4
byteSize('Hello World'); // 11