JSFiddle - React, Tailwind, and code Playground
JavaScript
var image = new Image();
image.src = "http://www.w3.org/html/logo/badge/html5-badge-h-css3-semantics.png";
image.onload = function() {
document.body.innerHTML = 'width - ' + image.naturalWidth + ' height - ' + image.naturalHeight
}