JSFiddle - React, Tailwind, and code Playground

JavaScript

function getImage(src) {
	var img = document.createElement('img');
	img.onerror = function () {
		console.log('Couldn\'t load ', src);
	};
	img.onload = function () {
		console.log('Load complete', img);
	}
	img.src=src;
}

getImage('http://aposlayko.github.io/gallery/img/fire/small/img27.jpg'); // Несуществующее
getImage('http://aposlayko.github.io/gallery/img/fire/small/img5.jpg'); // Существующее