JSFiddle - React, Tailwind, and code Playground

by Abhijeet Kandalkar

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;
    }