Nodejs String Reverse akaReverseString()

Here you can find the source of akaReverseString()

Method Source Code

String.prototype.akaReverseString=function  () {
   //from   ww w .j  a  v a 2  s. com
   var rev="";

   for (i=this.length-1;i>=0;i--){
      rev=rev+this[i];
   }
   return rev;

}

Related

  1. cReverse()
    console.log(String.fromCharCode(65, 66, 67, 0));
    String.prototype.cReverse = function() {
      var charCodes = [];
      this.map(function(x) {
        charCodes.push(x.charCodeAt(0));
      });
    var cString = "ABCD*";
    
  2. isReverseString()
    String.prototype.isReverseString = function() {
      for (var i = 0; i <= Math.floor(this.length / 2); i++)
        if (this[i] !== this[this.length - 1 - i]) return false
      return true
    };
    debug('asadasa'.isReverseString())
    
  3. reverse()
    String.prototype.reverse = function(){
      return this.split('').reverse().join('');
    
  4. reverse()
    String.prototype.reverse = function() {
      return this.split('').reverse().join('');
    };