JSFiddle - React, Tailwind, and code Playground

by minitech

JavaScript

var image = document.createElement('img');
image.addEventListener('load', function() {
    document.write(image.width + ' × ' + image.height);
});
image.src =...