Here you can find the source of endsWith(substring)
/**//w w w .j a v a 2 s . co m * Created by Serhii_Kotyk on 12/9/14. */ String.prototype.endsWith = function(substring){ return this.lastIndexOf(substring) == this.length - substring.length; };
String.prototype.endsWith = function (string) { var index = arguments.length < 2 ? this.length : arguments[1]; var foundIndex = this.indexOf(string); return foundIndex !== -1 && foundIndex === index - string.length; };
String.prototype.endsWith = function (string) { var index = arguments.length < 2 ? this.length : arguments[1]; var foundIndex = this.lastIndexOf(string); return foundIndex !== -1 && foundIndex === index - string.length; };
String.prototype.endsWith = function(substr) { return (this.match(substr + "$") == substr); };
String.prototype.endsWith = function (substring) { var stringCut = this.substring(this.length - substring.length); return stringCut === substring;
String.prototype.endsWith = function(substring) { var stringLength = this.length; var substringLength = substring.length; if (substringLength > stringLength) { return false; var i; for (i = 0; i < substringLength; i += 1) { if (substring[substringLength - i] !== this[stringLength - i]) { ...
String.prototype.endsWith = function(substring) { var compareString = this.substring(this.length - substring.length, this.length); return compareString === substring; };
String.prototype.endsWith = function(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; };
'use strict'; String.prototype.endsWith = function(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; };
String.prototype.endsWith = function(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; }; function endsWith (str, suffix) { return str.indexOf(suffix, str.length - suffix.length) !== -1;