I am making a game with HTML5 and JavaScript.
How could I play game audio via JavaScript?
If you don't want to mess with HTML elements:
var audio = new Audio('audio_file.mp3');
audio.play();
function play() {
var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/examples/t-rex-roar.mp3');
audio.play();
}
This uses the HTMLAudioElement interface, which plays audio the same way as the
If you need more functionality, I used the howler.js library and found it simple and useful.