Skip to content

Instantly share code, notes, and snippets.

@steida
Created April 16, 2009 20:27
Show Gist options
  • Save steida/96634 to your computer and use it in GitHub Desktop.
Save steida/96634 to your computer and use it in GitHub Desktop.
var names = ['mrd', 'prd'];
for (var i = 0, l = names.length, name; name = names[i], i < l; i++) {
document.title += name;
}
for (var i = names.length, name; name = names[i - 1], i--; ) {
document.title += name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment