JSFiddle - React, Tailwind, and code Playground
by octatone
HTML
<audio id="audio-element"/>
JavaScript
var el = document.getElementById('audio-element');
alert('<audio> constructor: ' + el.constructor.name + '. Should be HTMLAudioElement');
by octatone
<audio id="audio-element"/>
var el = document.getElementById('audio-element');
alert('<audio> constructor: ' + el.constructor.name + '. Should be HTMLAudioElement');