Skip to content

Instantly share code, notes, and snippets.

@thebyrd
Created October 28, 2013 17:18
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 thebyrd/7200828 to your computer and use it in GitHub Desktop.
Save thebyrd/7200828 to your computer and use it in GitHub Desktop.
return a string of whitespace of a given length
function emptyString(n) { return new Array(n).join(" ") }
@zsitro
Copy link

zsitro commented Mar 13, 2014

Hi, where did you need that?

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