Skip to content

Instantly share code, notes, and snippets.

@hnakamur
Created August 1, 2022 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hnakamur/1a477edfbb9af9efaf6e5657123c0eac to your computer and use it in GitHub Desktop.
Save hnakamur/1a477edfbb9af9efaf6e5657123c0eac to your computer and use it in GitHub Desktop.
show JavaScirpt alert from window.onerror
<script>
window.onerror = () => alert("Hello, World!");
function hello(x) {
if(typeof x === 'undefined') {
alert(x.f());
}
}
hello();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment