JSFiddle - React, Tailwind, and code Playground
by techie bala
JavaScript
/* Javscript Replace */
// Replace HTML Tags <>
//var regex = /<([^>]*)>/g;
var html = 'Beautiful Of Rooms And Furniture';
var regex = /And|Of/g;
html = html.replace(regex, function(x) { return x.toLowerCase() });
alert(html);