Skip to content

Instantly share code, notes, and snippets.

@lahwran
Created July 19, 2019 21:56
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 lahwran/779f45fca67b9970dd63272d670192fb to your computer and use it in GitHub Desktop.
Save lahwran/779f45fca67b9970dd63272d670192fb to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
void function derp() {
console.log("won't run")
}
console.log("before");
derp();
console.log("after");
</script>
<script id="jsbin-source-javascript" type="text/javascript">void function derp() {
console.log("won't run")
}
console.log("before");
derp();
console.log("after");</script></body>
</html>
void function derp() {
console.log("won't run")
}
console.log("before");
derp();
console.log("after");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment