Play Audio Loop using the following code example?
Answer
Correct Answer: audio = new Audio(‘asound.ogg'); audio.addEventListener('ended', function() { this.currentTime = 0; this.play(); }, false); audio.play();
Explanation:
Note: This Question is unanswered, help us to find answer for this one