I can not play audio on autoplay in the new version chrome br! Help me guys
const myAudio = new Audio('transient.mp3');
myAudio.loop = true;
myAudio.addEventListener('ended', function () {
this.currentTime = 0;
this.play();
}, false);
myAudio.play();