Files
30-seconds-of-code/js/snippets/byte-size.md
2023-05-03 20:39:23 +03:00

462 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Byte size of string snippet
string
mountain-lake-cottage-2 2020-10-18T23:04:45+03:00

Returns the length of a string in bytes.

  • Convert a given string to a Blob Object.
  • Use Blob.size to get the length of the string in bytes.
const byteSize = str => new Blob([str]).size;
byteSize('😀'); // 4
byteSize('Hello World'); // 11