Skip to content

Instantly share code, notes, and snippets.

@naush
Created July 14, 2010 15:24
Show Gist options
  • Save naush/475552 to your computer and use it in GitHub Desktop.
Save naush/475552 to your computer and use it in GitHub Desktop.
String.prototype.reverse_words_in_sentence = function() {
return this.split(" ").reverse().join(" ");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment