JSFiddle - React, Tailwind, and code Playground

by Tân Nguyễn

HTML

<audio controls autoplay id="x">
  <source src="https://file-examples.com/wp-content/uploads/2017/11/file_example_MP3_700KB.mp3" type="audio/mpeg">
</audio>

JavaScript

setTimeout(function () {
	let x = document.getElementById('x');
  x.play()
}, 1000);