String.right()





9
Date Submitted Mon. Jul. 24th, 2006 9:45 PM
Revision 1 of 1
Helper svachon
Tags JavaScript | String
Comments 0 comments
Gets the rightmost substring, of the specified length, from a String object.

String.prototype.right = function (length_) {
        var _from = this.length - length_;
        if (_from < 0) _from = 0;
        return this.substring(this.length - length_, this.length);
};
 

Sylvain Vachon

Comments

There are currently no comments for this snippet.

Voting