JSFiddle - React, Tailwind, and code Playground
JavaScript
String.prototype.toUpperCase = function(){
document.write('String.toUpperCase() disabled<hr>');
return this;
}
var test = "This is a string";
document.write(test.toUpperCase());
String.prototype.toUpperCase = function(){
document.write('String.toUpperCase() disabled<hr>');
return this;
}
var test = "This is a string";
document.write(test.toUpperCase());