membuat teks tebal js

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

<p >Make text bold <span id="demo">Text Bold</p>

<script>
function myFunction() {
  document.getElementById("demo").style.fontWeight = "900";
}
</script>
EzeeMax