function removeEs(text){ return text.replace("e",""); } var s ="hello world"; var d = s.removeEs();
Jump To Top of Thread