JSFiddle - React, Tailwind, and code Playground
JavaScript
{
const video = document.createElement('video');
if (video.canPlayType('video/mp4; codecs="hevccc1.4.10.L120.90"') === 'probably') {
console.log("hevccc1.4.10.L120.90" + ' is supported!');
return true;
}
return false;
}