Skip to content

Instantly share code, notes, and snippets.

@naush
Created July 14, 2010 15:23
Show Gist options
  • Save naush/475548 to your computer and use it in GitHub Desktop.
Save naush/475548 to your computer and use it in GitHub Desktop.
function reverse_words_in_sentence() {
for (i = arguments.length - 1; i > -1; i--) {
this.push(arguments[i]);
}
return this.join(" ");
}
sentence = "The Good, the Bad and the Ugly".split(" ");
reverse_words_in_sentence.apply([], sentence);
// "Ugly the and Bad the Good, The"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment