Skip to content

Instantly share code, notes, and snippets.

@nolanlawson
Created November 3, 2017 18:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolanlawson/0b25b49b66d2320260c1b5f9ce012bb6 to your computer and use it in GitHub Desktop.
Save nolanlawson/0b25b49b66d2320260c1b5f9ce012bb6 to your computer and use it in GitHub Desktop.
Repro Edge console issue
<html>
<pre id=display></pre>
<script>
try {
console.log.apply(console, ['this', 'should', 'work'])
display.innerText = 'successfully wrote to console'
} catch (e) {
display.innerText = 'failed to write to console: ' + e
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment