JavaScript: Reverse String [Extended Native]


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. String.prototype.reverse = function() {
  2. return this.split("").reverse().join("");
  3. }

URL: http://jsfiddle.net/Bu3As/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.