I\'ve seen ways of seeing if a window a particular script opened is still opened, but what if it didn\'t?
I have a small window that has a button to click to load th
Try the following code:
if (!!window) { console.log('Exist'); }