String.right()
9
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);
};






There are currently no comments for this snippet.