Files
30-seconds-of-code/snippets/byteSize.md
Rohit Tanwar ea4c764eaf add byteSize
2017-12-29 18:00:34 +05:30

15 lines
181 B
Markdown

### byteSize
Returns the length of string.
```js
const byteSize = (str) => {
return new Blob([str]).size;
}
```
```js
byteSize("😀"); // 4
byteSize("Hello World"); // 11
```