무작위로 재생하려면 다음과 같은 노래를 추가하세요.
init ([ 'https://demo.com/songs/song1.mp3, 'https://demo.com/songs/song2.mp3, 'https://demo.com/songs/song3.mp3 ]);
Math.random:을 사용하여 무작위로 플레이하려면 다음을 사용하세요.
function displayRandom() { var audio = Math.floor(Math.random() * (collection.length)); audio = collection[audio]; audio.play(); setTimeout(loop,audio.duration*1000); }