Javascript String endsWith(test)

Description

Javascript String endsWith(test)


String.prototype.endsWith = function(test) {
  return this.length >= test.length && this.substr(this.length - test.length) == test;
}



PreviousNext

Related