List of utility methods to do String Equal Ignore Case
String.prototype.equalsIgnoreCase = function (otherStr) { return this.toLowerCase() === otherStr.toLowerCase();