Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saas786/1bce3115650cf853a0049836bfd5e73c to your computer and use it in GitHub Desktop.
Save saas786/1bce3115650cf853a0049836bfd5e73c to your computer and use it in GitHub Desktop.
Javascript get string size. i.e. Cookie size
function getByteSize(s) {
return encodeURIComponent('<q></q>' + s).length;
}
getByteSize(document.cookie);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment