Is there any way to make a sound spam from the beginning? So far I have this:
<audio controls src="https://www.dropbox.com/s/a6wqamnhhmprvwu/OOF.wav?dl=1" id="audio"></audio>
<script>
var one;setInterval(two,1);
function two{
var audio = document.getElementById("audio");
audio.pause();
audio.currentTime = 0;
audio.play();
}
</script>