JSFiddle - React, Tailwind, and code Playground

by Alexander Sevirinov

HTML

<embed src="https://noisefx.ru/noise_base/04/01809.mp3" width="0" height="90" loop="false" autostart="false" hidden="true" />

JavaScript

myAudio = new Audio('https://noisefx.ru/noise_base/04/01809.mp3'); 
myAudio.addEventListener('ended', function() {
    this.currentTime = 0;
    this.play();
}, false);
myAudio.play();