var
aObj =
new
Audio(
"sound/bakuhatsu1.wav"
);
document.getElementById(
"btn"
).onclick =
function
(){
aObj.currentTime = 0;
aObj.play();
}