웹에서 간단하게 사운드를 출력하는 방법
마스터욱
0
23
0
0
2020-05-28 03:15:02
function go_sound()
{
let audio = new Audio('data/warble-h.wav');
audio.play();
}