Skip to content

Instantly share code, notes, and snippets.

@eliperelman
Created July 6, 2011 03:02
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 eliperelman/1066468 to your computer and use it in GitHub Desktop.
Save eliperelman/1066468 to your computer and use it in GitHub Desktop.
Building strings
// String concatenation
var stringBuilder = '';
for (var i = 0, len = 30; i < len; i++) {
stringBuilder += 'word' + i;
}
console.log(stringBuilder);
// Array joining, faster in some browsers
var stringBuilder = [];
for (var i = 0, len = 30; i < len; i++) {
stringBuilder.push('word' + i);
}
console.log(stringBuilder.join(''));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment