Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 308 Bytes

play-audio.md

File metadata and controls

12 lines (9 loc) · 308 Bytes

How to play an audio file

In order to play an audio file, you can use the Audio type:

const url = 'https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3';
const myAudio = new Audio(url);
myAudio.play();

References: