JSFiddle - React, Tailwind, and code Playground

JavaScript

function checkImagem(url) {
  var img = '<img src="'+ url +'">';
  $(img).load(function() {
    $('body').append(url+img);
  }).bind('error', function() {
    alert('imagem: '+url+' não existe');
  });
 }
checkImagem('http://socialtalent.co/wp-content/uploads/blog-content/so-logo.png');
           checkImagem('http://pbs.twimg.com/profile_images/438827041199099904/ZLjBL8Tg_normal.jpeg');

checkImagem('https://www.google.com.br/images/srpr/logo11w.png');