JSFiddle - React, Tailwind, and code Playground

JavaScript

var myImg = new Image();
    myImg.src = "http://i.imgur.com/NDDCns.jpg";
    myImg.onload = function() {
        var width = myImg.width;
        var height = myImg.height;

             alert("w " + width + " h " + height);

        }