JSFiddle - React, Tailwind, and code Playground
by Noam Paz
JavaScript
let iframeSrc = 'https://apps.devqa.timetoknow.com/index.html';
if (iframeSrc.indexOf('.html') !== -1) {
const htmlIndex = iframeSrc.lastIndexOf('/');
iframeSrc = iframeSrc.substring(0, htmlIndex);
}
const lastIndex = iframeSrc.length - 1;
if (iframeSrc.lastIndexOf('/') === lastIndex) {
iframeSrc = iframeSrc.substring(0, lastIndex);
}
alert(iframeSrc);