JSFiddle - React, Tailwind, and code Playground
JavaScript
/* Hypothetical example */
// const imageResponse = null;
// const imageResponse = '';
// const imageResponse = undefined;
// const imageResponse = 'http://bad-url.com/too-short/or-missing-components';
const imageResponse = 'https://good-url.com/images/holiday/greece.jpg';
const imageSrc = (imageResponse && isPathValid(imageResponse)) || 'https://fallback.org/image-path';