Javascript String is_uppercase()
uppercase()
String.prototype.is_uppercase = function(){ return this.valueOf() === this.valueOf().toUpperCase();; } var res = "PHhANI".is_uppercase();