JSFiddle - React, Tailwind, and code Playground

by SHELDON PASCIAK

JavaScript

console.log("test");

let a;
 a = "sheldon pasciak this is the test the";
while (a.indexOf("the")>=0) {
a=a.replace("the","THE");
}
console.log(a);