JSFiddle - React, Tailwind, and code Playground

JavaScript

function strip(chars) {
   return this.replace(chars,"");
}

String.prototype.strip=strip;

var wrong = "Hellow";

alert(wrong.strip("w"));