how to play sound in js code example
Example 1: play sound javascript
var audio = new Audio("folder_name/audio_file.mp3");
audio.play();
Example 2: how to play sound on load js
<audio id="foobar" src="yoursample.ogg" preload="auto">
Example 3: html play audio programmatically
document.getElementById('yourAudioTag').play();