Skip to content

Instantly share code, notes, and snippets.

@farskid
Created January 17, 2020 15:03
Show Gist options
  • Save farskid/761f42b5204b0539954e8cb61f7700f8 to your computer and use it in GitHub Desktop.
Save farskid/761f42b5204b0539954e8cb61f7700f8 to your computer and use it in GitHub Desktop.
List all global variables (custom props added to window object)
const iframeEl = document.createElement('iframe');
document.body.appendChild(iframeEl);
console.log(Object.keys(window).filter(key => !(key in iframeEl.contentWindow)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment