Skip to content

Instantly share code, notes, and snippets.

@felipemorais
Created June 27, 2013 17:44
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save felipemorais/5878637 to your computer and use it in GitHub Desktop.
Save felipemorais/5878637 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);
@chrisribe
Copy link

'<q></q>' + s
Why the quotes tag ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment