Created
October 28, 2013 17:18
-
-
Save thebyrd/7200828 to your computer and use it in GitHub Desktop.
return a string of whitespace of a given length
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function emptyString(n) { return new Array(n).join(" ") } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, where did you need that?