Make a paragraph to show html with javascript

I have this code:

<p id="new2">{{ $message->message }}</p>

and I want via script to make to display the text inside the paragraph with id ‘new2’ as html

<script> 
document.getElementById("new2").HTML('new2');
</script>