js play music code example

Example 1: play a sound wiith js

var audio = new Audio('audio.mp3');
  audio.play();

Example 2: play sound in javascript

<script>
function play() {
  var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/examples/t-rex-roar.mp3');
  audio.play();
}
</script>
<button onclick-"play();">PLAY MY AUDIO</button>

Example 3: js play sound

const sound = require("sound-play");
sound.play("file.mp3");

Example 4: html play audio programmatically

document.getElementById('yourAudioTag').play();