JSFiddle - React, Tailwind, and code Playground

HTML

<body>

<p>Click the button to replace "Microsoft" with "W3Schools" in the paragraph below:</p>

<p id="demo"> < bijgevoegd></p>

<button onclick="myFunction()">Try it</button>


</body>

JavaScript

function myFunction() {
    var str = document.getElementById("demo").innerHTML; 
    var res = str.replace(/bijgevoegd>/g, "");
    document.getElementById("demo").innerHTML = res;
}