JSFiddle - React, Tailwind, and code Playground
HTML
<audio controls>
<source src="http://www.w3schools.com/html/horse.ogg" type="audio/ogg">
<source src="http://www.w3schools.com/html/horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
JavaScript
window.onload = function(){
var audio = new Audio();
audio.src = "http://www.w3schools.com/html/horse.mp3";
// audio.play();
}